.login {
    /* color: #337ab7; */
    background: #136a8a;
    background: -webkit-linear-gradient(to right, #267871, #136a8a);
    /* background: linear-gradient(to right, #267871, #136a8a); */
    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: 0;
    padding: 40px;
    background: white;
    /* background: linear-gradient(to right, #53b2dd, #337ab7); */
    box-shadow: 0px 2px 10px rgb(0 0 0 / 20%), 0px 10px 20px rgb(0 0 0 / 30%), 0px 17px 51px 1px rgb(0 0 0 / 50%);
    width: 26%;
}

.login .head {
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.login .head .company {
    font-size: 30px;
    float: left;
}

.login .msg {
    text-align: center;
}

.inpt {
    border: 0;
    border-bottom: 1px solid #c0b9b9;
    width: 100%;
    padding: 23px 3px 10px;
}

.login .form input[type=text].text {
    border: none;
    background: none;
    box-shadow: 0px 2px 0px 0px darkgrey;
    width: 100%;
    color: black;
    font-size: 1em;
    outline: none;
}

.login .form input[type=email].email {
    border: none;
    background: none;
    box-shadow: 0px 2px 0px 0px darkgrey;
    width: 100%;
    color: black;
    font-size: 1em;
    outline: none;
}

.login .form .text::placeholder {
    color: darkgrey;
    /* color: #337ab7; */
}

.login .form .email::placeholder {
    color: darkgrey;
    /* color: #337ab7; */
}

.login .form input[type=password].password {
    border: none;
    background: none;
    box-shadow: 0px 2px 0px 0px darkgrey;
    width: 100%;
    color: black;
    font-size: 1em;
    outline: none;
    /* margin-bottom: 20px; */
    margin-top: 20px;
}

.login .form .password::placeholder {
    color: darkgrey;
    /* color: #337ab7; */
}

.login .form .btn-login {
    background: none;
    text-decoration: none;
    color: #337ab7;
    box-shadow: 0px 0px 0px 2px #337ab7;
    border-radius: 3px;
    padding: 5px 2em;
    transition: 0.5s;
}

.login .form .btn-login:hover {
    background: #337ab7;
    color: white;
    transition: 0.5s;
}

.login .forgot {
    text-decoration: none;
    color: #337ab7;
    font-size: 12px;
}


/* 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
} */

@media(min-width:576px) and (max-width:767px) {
    .login {
        width: 50%;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .login {
        width: 50%;
    }
}