body {
    background: #ABCDEF;
    background-image: url(https://todoapp.eu/back.jpg);
    background-size: cover;
    font-family: Assistant, sans-serif;
    display: flex;
    min-height: 90vh;
}




.login {
    color: white;
    background: #136a8aeb;
    background:
            -webkit-linear-gradient(to right, #267871, #136a8a);
    background: linear-gradient(to right, #267871e3, #136a8ae8);
    margin: auto;
    box-shadow:
            0px 2px 10px rgba(0,0,0,0.2),
            0px 10px 20px rgba(0,0,0,0.3),
            0px 30px 60px 1px rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 50px;
}
.login .head {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    text-align: center;
}
.login .head  {
    font-size: 2.2em;
}
.login .msg {
    text-align: center;
}
.login .form input[type=text].text {
    border: none;
    background: none;
    box-shadow: 0px 2px 0px 0px white;
    width: 100%;
    color: white;
    font-size: 1em;
    outline: none;
}
.login .form .text::placeholder {
    color: #D3D3D3;
}
.login .form input[type=password].password {
    border: none;
    background: none;
    box-shadow: 0px 2px 0px 0px white;
    width: 100%;
    color: white;
    font-size: 1em;
    outline: none;
    margin-bottom: 20px;
    margin-top: 20px;
}
.login .form .password::placeholder {
    color: #D3D3D3;
}
.login .form .btn-login {
    background: none;
    text-decoration: none;
    color: white;
    box-shadow: 0px 0px 8px 3px white;
    border-radius: 3px;
    border: 0px;
    padding: 5px 2em;
    transition: 0.5s;
}
.login .form .btn-login:hover {
    background: white;
    color: dimgray;
    transition: 0.5s;
}
.login .forgot {
    text-decoration: none;
    color: white;
    float: right;
    position: relative;
    top: 2px;
}
footer {
    position: absolute;
    color: #136a8a;
    bottom: 10px;
    padding-left: 20px;
}
footer p {
    display: inline;
}
footer a {
    color: green;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
footer .heart {
    color: #B22222;
    font-size: 1.5em
}


.row-logo{

width: 100%;
}
.company{
    
font-size: 0.5em;
}

@media only screen and (max-width: 600px) {
   .login{
       width: 95%;
       padding: 39px;
   }
    .login .form input[type=text].text {
line-height: 30px;
    }
    .login .form input[type=password].password {
        line-height: 30px;
    }
    .mobile-hide{
        display: none;
    }
}

@media only screen and (min-width: 601px) {

    .desktop-hide{
        display: none;
    }
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    border: 1px solid rgb(237, 242, 232);
    -webkit-text-fill-color: #f8f9ff;
    -webkit-box-shadow: 0 0 0px 1000px #000 inset;
    transition: background-color 5000s ease-in-out 0s;
}