/* Login */
.main-content{
    background:#FFFFFF;
    background-size: 100% 100%;
    height: 100%;
    width: 100%;
    display: grid;
    margin-top: 0;
    min-height: 83.1vh;
}
.form-section{
    height: 100%;
    place-items: center;
}
#forgot-form {
    background-color: #8a8583;
    width: 500px;
    border: none;
    padding: 20px 25px;
    border-radius: 20px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 50px;
}
#forgot-form .form-group{
    margin-bottom: 20px;
}
#forgot-form .input-field{
    width: 100%;
    position: relative;
}
#forgot-form .input-field i{
    position: absolute;
    padding: 10px;
    color: #fff;
    padding-top: 12px;
    padding-left: 13px;
    font-size: 20px;
    left: 0;
}
#forgot-form .input-field input{
    color: #fff;
    left: 0;
}
#forgot-form h3{
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
#forgot-form label{
    font-weight: 500;
}
#forgot-form input[type=text],
#forgot-form input[type=email] {
    background-color: #A59E9A;
    color: #fff;
    margin: 10px auto;
    padding: 10px 15px;
    padding-left: 45px;
    border: none;
    border-radius: 20px;
}
::placeholder {
    color: #f4f2f2 !important;
  }
::-ms-input-placeholder {
    color: #f4f2f2;
}
input:-internal-autofill-selected {
    background-color: transparent !important;
    background-image: none !important;

}
#forgot-form input[type=text]:focus,
#forgot-form input[type=text]:active,
#forgot-form input[type=email]:focus,
#forgot-form input[type=email]:active{
    border: none;
    box-shadow: none;
}
.button-part {
    text-align: center;
    margin-top: 35px;
    margin-bottom: 20px;
}
.button-part .forgot-btn
{
    display: block;
    width: 200px;
    margin: 0 auto;
    text-align: center;
    padding: 8px 20px;
    font-weight: 500;
    color: #111;
    background: #f7efd2;
    border-radius: 20px;
    margin-top: 20px;
    text-transform: uppercase;
    border-radius: 20px;
    border: 2px solid #eed7a1;
}
.button-part .forgot-btn:hover
{
    background: #eeca76;
    color: #111;
    transition: ease-in .3s;
}

/* Media Query */
@media only screen and (max-width: 767px) {
    #forgot-form {
        width: 90%;
        margin-top: 0px;
        margin-bottom: 20px;
    }
}