
.otp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.otp-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.otp-modal-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.otp-modal-content {
    background-color: #fff;
    padding: 38px;
    border-radius: 5px;
    max-width: 400px;
    width: 90%;
}

.close-btn,
.otp-close-btn {
    cursor: pointer;
    font-size: 35px;
    float: right;
}

#user_otp,
#resend_otp {
    margin-bottom: 15px;
}

#lb-otpSendBtn {
    margin-top: 15px;
}

.lb-submit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

form#resend_otp {
    margin-bottom: 0;
    margin-left: 10px;
}

#client_name {
    margin-bottom: 5px;
}

.error {
    color: red;
}