/* Overlay styles */
#otp-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    filter: blur(5px);
}

/* Popup styles */
#otp-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    width: 300px;
    text-align: center;
    border-radius: 10px;
}

/* Popup heading */
#otp-popup h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: #333;
}

/* Popup description */
#otp-popup p {
    margin-bottom: 5px;
    font-size: 14px;
    color: #666;
}

/* OTP input field */
#otp-popup input#otp-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

/* Verify button */
#otp-popup button#verify-otp-btn {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

#otp-popup button#verify-otp-btn:hover {
    background-color: #005f87;
}


p#otp_field {
    display: none;
}