/* OTP */
.otp_container,.otp_bg{
    display: none;
}

.otp_bg{
    position: fixed;
    height: 110%;
    width: 110%;
    left: -5%;
    top: -5%;
    background-color: #000;
    opacity: 0.7;
    z-index: 110;
}

.otp_container {
    width: 300px;
    height: 330px;
    position: fixed;
    z-index: 111;
    background-color: #eee;
    top: calc(50vh - 180px);
    left: calc(50vw - 150px);
    text-align: center;
    border-radius: 5px;
    padding: 20px;
}

.otp_container button {
    margin: 10px;
}

.submit_otp {
    background-color: #00f;
    color: #fff;
}

.resend_otp {
    background-color: #ffa700;
    color: #000;
}

.otp {
    margin: 10px 0;
}

.close_otp_container {
    width: 30px;
    height: 30px;
    background-color: #f00;
    cursor: pointer;
    position: relative;
    top: -30px;
    left: 260px;
    font-size: 25px;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    font-family: Arial;
}

.close_otp_container::before {
    content: "X";
}
