/* Email Verification on Contact forms */
.contact-form-otp-popup {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(4px);
    z-index: 99999;
}

.contact-form-otp-popup.show {
    display: flex;
}

.otp-dialog {
    width: 100%;
    max-width: 520px;
    margin: auto;
}

.otp-content {
    background: #1b1b1b;
    border-radius: 20px;
    padding: 30px;
    pointer-events: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .45);
}

.otp-message-section {
    font-size: 14px;
    font-weight: 500;
}

.otp-message-section.otp-error {
    color: #ff6b6b;
}

.otp-message-section.otp-success {
    color: #28a745;
}