
body{
    display: flex;
    flex-flow: column;
    height: 100%;
    margin-top: 0px;
}

.login-container{
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    position: relative;
    background-image: url("/assets/imgs/general/background.png");
    background-color: beige;
    display: flex;
    flex-flow: column;
 
}

.form-box{
    width: 90%;
    max-width: 450px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #ffffffaa;
    padding: 50px 60px 70px;
    text-align: center;
    border-radius: 10%;
}
.form-box h1{
    font-size: 30px;
    margin-bottom: 60px;
    color: #08a20b;
    position: relative;
}
.form-box h1::after{
    content: '';
    width: 30px;
    height: 4px;
    border-radius: 3px;
    background: #08a20b;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
}



.input-field{
    background: #eaeaea;
    margin: 15px 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    max-height: 65px;
    transition: max-height 0.5s;
    overflow: hidden;
    direction: ltr;
}

input{
    width: 100%;
    background: transparent;
    border: 0;
    outline: 0;
    padding: 18px 15px;
    text-align: right;
    
}
.input-field i{
    margin-left: 15px;
    color: #999;
    margin-right: 10px;
}

form p{
    text-align: right;
    font-size: 14px;
}
form p a{
    text-decoration: none;
}

.error-field {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    direction: ltr;
    margin-top: 2%;
    color: red;
}
.notify-field {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    direction: ltr;
    margin-top: 2%;
    color: #08a20b;
}


.btn-field {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    direction: ltr;
}

.btn-field button{
    
    flex-basis: 48%;
    background: #08a20b;
    color: #fff;
    height: 40px;
    border-radius: 20px;
    border: 0;
    outline: 0;
    cursor: pointer;
    transition: background 1s;
    margin-top: 10%;
}

.btn-field button.disable{
    background: #eaeaea;
    color: #555;
}
