*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.login_bg{
    background-color: #F2F2F2;
    font-family: 'Red Hat Text', sans-serif;
    padding-top: 100px;
}
/* Login */
.login{
display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
}
.login .login-body{
    background-color: white;
    width: 660px;
    margin: 0 auto;
    padding: 30px 60px;
    border-radius: 4px;
}
.login .login__heading{
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #001732;
    padding-bottom: 10px;
}
.login .login__field .field__head{
    font-size: 16px;
    font-weight: 500;
    color: #001732;
    margin-bottom: 4px;
}
.login .login__field input{
    width: 100%;
    padding: 22px 15px;
    outline: none;
    border-radius: 4px;
    border: 1px solid #F2F2F2;
}
.login .login__field input:focus{
    border: 1px solid #001732;
}
.resend-code:hover{
    border-bottom: 1px solid transparent !important;
}
.field__btn{
    width: 100%;
    padding: 22px 0;
    margin-top: 30px;
    border: 2px solid #001732;
    color: #F2F2F2;
    background: #001732;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
}

.field__btn:hover {
    background: transparent;
    color: #001732;
}

.login .login__help{
    font-size: 16px;
    columns: #001732;
    text-align: center;
    padding-top: 10px;
}
.login .login__help a{
    display: inline-block;
    color: #9CA1AC;
    text-decoration: none;
    border-bottom: 1px solid #9CA1AC;
}
.login .login__help a:hover{
   border-bottom: 1px solid transparent; 
}

.warning-notice{
    color: red;
}

/* Otp */
/* .otp__bg{
    background-color: #F2F2F2;
    padding-top: 185px;
    padding-bottom: 200px;
}
.otp{
    background-color: white;
    width: 660px;
    margin: 0 auto;
    padding: 30px 60px;
    border-radius: 4px;
} */

.otp{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding-top: 60px;
}
.otp .otp-body{
    background-color: white;
    width: 660px;
    margin: 0 auto;
    padding: 30px 60px;
    border-radius: 4px;
}

.otp .otp__heading{
    font-size: 40px;
    font-weight: 600;
    color: #001732;
    padding-bottom: 10px;
}
.otp .otp__field input{
    width: 100%;
    padding: 22px 15px;
    outline: none;
    border-radius: 4px;
    border: 1px solid #F2F2F2;
}
.otp .otp__field input:focus{
    border: 1px solid #001732;
}

.otp .btn-area-login{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.otp .btn-area-login .otp_code{
    display: inline-block;
    font-size: 14px;
    color: #001732;
    text-align: center;
    padding-top: 20px;
}
.otp .btn-area-login .otp_code-right{
    display: inline-block;
    font-size: 14px;
    color: #001732;
    text-align: center;
    padding-top: 20px;
}
.otp .btn-area-login .otp_code-right .field__btn{
    font-size: 14px;
    border: none;
    background-color: transparent;
    color: #9CA1AC;
    border-bottom: 1px solid #9CA1AC ;
    transition: all .2s ease-in-out;
}
.otp .btn-area-login .otp_code-right .field__btn:hover{
    border-bottom: 1px solid transparent;
}

/* Hidden */
.hidden{
    display: none;
}

/* Legal */
.legal,
.otp__bg {
    background: #F2F2F2;
}
.legal button{
    display: flex;
    margin: 0 auto;
    background: #9CA1AC;
    border: none;
    padding: 4px 8px;
    border-radius: 4px 4px 0 0;
}
.legal button .legal__title{
    font-size: 14px;
    font-weight: 500;
    color: #001732;
    margin: 0;
}
.legal .legal__body{
    background: #9CA1AC;
    padding: 20px 0;
}
.legal .legal__body .legal__text{
    font-size: 14px;
    font-weight: 300;
    color: #001732;
    line-height: 22px;
}
.legal .legal__body .legal__text a{
    display: inline-block;
    text-decoration: none;
    color: white;
}
.legal .legal__body .legal__guide-title{
    font-size: 14px;
    font-weight: 500;
    color: #001732;
    line-height: 22px;
}
.legal .legal__body .legal__guide-item{
    padding: 0;
    margin: 0;
    list-style: none;
}
.legal .legal__body .legal__guide-item .item__list{
    font-size: 14px;
    font-weight: 300;
    color: #001732;
    line-height: 22px;
}


/* Footer */
.footer{
    background-color: #9CA1AC;
    padding: 30px 0;
    text-align: center;

}
.footer .copyright{
    font-size: 14px;
    font-weight: 300;
    color: #001732;
}
.footer .copyright a{
    display: inline-block;
    text-decoration: none;
    color: #001732;
    font-weight: 400;
}
.footer .menu{
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer .menu li{
    display: inline-block;
}
.footer .menu li a{
    display: inline-block;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all ease-in-out .5s;
}
.footer .menu li a:hover{
    color: #001732;
}

@media only screen and (max-width: 768px) {
    .login{
        height: 74vh;
    }
    .login .login-body{
        width: 100%;
        padding: 10px 20px;
        margin: 0 auto;
    }
    .otp{
        height: 65vh;
        margin-top: 0;
    }
    .otp .otp-body{
        width: 100%;
        padding: 10px 20px;
        margin: 0 auto;
    }
}
@media only screen and (max-width: 576px) {
    .login{
        height: 74vh;
    }
    .login .login-body{
        width: 95%;
        padding: 10px 20px;
        margin: 0 auto;
    }
    .otp{
        height: 45vh;
        margin-top: 0;
    }
    .otp .otp-body{
        width: 95%;
        padding: 10px 20px;
        margin: 0 auto;
    }
    .login .login__heading,
    .otp .otp__heading{
        font-size: 24px;
    }

    
}

