* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.loginbox{
    width: 500px;
    height: 400px;
    position: fixed;
    align-content: center;
    align-items: center;
    text-align: center;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 9999;
}
.loginboxheader{
    width: 100%;
    height: 80px;
    box-shadow: 0 1px 1px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-family: Arial;
}
.loginboxstatus{
    /*visibility: hidden;*/
}
/*-------------Password logn box-----------*/
.password_username , .password_password{
    width: 80%;
    display: inline-block;
    box-sizing: border-box;
}
.password_username input{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.password_password input{
    width: 100%;
    padding: 12px 20px;
    margin: 6px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
}
.password_password a{
    float: right;
    position: absolute;
    text-decoration: none;
    padding: 8px;
    top: 10px;
    right: 5px;
    cursor: pointer;
}
.password_login_btn{
    background-color: #247183;
    margin-top: 5px;
    padding: 12px;
    border-radius: 4px;
    color: white;
    width: 80%;
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
}
.password_otp_login_link, .password_signup_link, .password_password a{
    margin-top: 7px;
    padding: 2px;
    cursor: pointer;
    color: #247183;
}
.password_otp_login_link:hover, .password_signup_link:hover, .password_password a:hover{
    color: black;
    text-decoration: none;
}


/*-------------otp login box-----------*/
.otp_box, .otp_login_btn{
    display: none;
}
.otp_username{
    width: 80%;
    display: inline-block;
    box-sizing: border-box;
}
.otp_otp{
    width: 80%;
    position: relative;
    display: none;
    box-sizing: border-box;
}
.otp_username input,.otp_otp input{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.otp_captcha{
    /*visibility: hidden;*/
    display: inline-block;
    /*height: 0px;
    overflow: hidden;*/
    width: 80%;
    box-sizing: border-box;
}
.otp_send_otp_btn, .otp_login_btn{
    background-color: #247183;
    margin-top: 5px;
    padding: 12px;
    border-radius: 4px;
    color: white;
    width: 80%;
    box-sizing: border-box;
    cursor: pointer;
}
.otp_send_otp_btn{
    display: inline-block;
}
.otp_password_login_link, .otp_signup_link{
    margin-top: 7px;
    padding: 2px;
    cursor: pointer;
    color: #247183;
}
.otp_password_login_link:hover, .otp_signup_link:hover{
    color: black;
    text-decoration: none;
}

/*-------------sign login box-----------*/
.signup_name , .signup_username, .signup_email, .signup_password{
    width: 80%;
    display: inline-block;
    box-sizing: border-box;
}
.signup_otp{
    width: 80%;
    display: none;
    box-sizing: border-box;
}
.signup_name input,.signup_username input, .signup_email input, .signup_password input,.signup_otp input{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.signup_captcha{
    /*visibility: hidden;*/
    display: inline-block;
    /*height: 0px;
    overflow: hidden;*/
    width: 80%;
    box-sizing: border-box;
}
.signup_btn, .signup_send_otp_btn{
    background-color: #247183;
    margin-top: 5px;
    padding: 12px;
    border-radius: 4px;
    color: white;
    width: 80%;
    box-sizing: border-box;
    cursor: pointer;
}
.signup_send_otp_btn{
    display: inline-block;
}
.signup_btn{
    display: none;
}
.signup_login_link{
    margin-top: 7px;
    padding: 2px;
    cursor: pointer;
    color: #247183;
}
.signup_login_link:hover{
    color: black;
    text-decoration: none;
}
