/* OTP Verification Popup Styles */
.otp-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.otp-popup {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 24px;
    width: 400px;
    max-width: 90%;
}

.otp-popup h3 {
    margin-top: 0;
    font-size: 18px;
    color: #1a2b47;
    margin-bottom: 12px;
}

.otp-popup p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 14px;
}

.otp-input-container {
    margin-bottom: 20px;
}

.otp-input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    box-sizing: border-box;
    outline: none;
}

.otp-input:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.otp-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.otp-cancel-btn {
    padding: 10px 16px;
    background-color: #e2e8f0;
    color: #4a5568;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.otp-verify-btn {
    padding: 10px 16px;
    background-color: #1a2b47;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.otp-verify-btn:hover {
    background-color: #0f172a;
}

.otp-cancel-btn:hover {
    background-color: #d1d8e0;
}
