/* Registration OTP — matches login_registration.css theme (Poppins, indigo/orange-purple gradient) */

.reg-email-msg {
    display: block;
    padding: 3px 3rem 0;
    font-family: Poppins, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    min-height: 1rem;
    line-height: 1.4;
    letter-spacing: 0.01em;
}
.reg-email-msg.valid { color: #10b981; }
.reg-email-msg.error { color: #ef4444; }

.reg-otp-section { display: none; }
.reg-otp-section.visible { display: block; }

.reg-otp-section .input-box {
    margin-top: 0.75rem;
}

.reg-otp-action-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 3rem 0;
}

.registration-box .reg-otp-btn {
    width: auto;
    padding: 5px 14px;
    margin: 0;
    border-radius: 6px;
    border: none;
    background: linear-gradient(135deg, #CC450A 0%, #a855f7 100%);
    color: #FFFAF7;
    font-family: Poppins, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.registration-box .reg-otp-btn:hover {
    background: linear-gradient(135deg, #5B21B6 0%, #7E22CE 100%);
    box-shadow: 0px 4px 8px rgba(6, 11, 25, 0.2);
}
.registration-box .reg-otp-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}
.registration-box .reg-otp-btn-hidden { display: none; }

.reg-otp-timer {
    margin-left: auto;
    font-size: 0.78rem;
    font-family: Poppins, sans-serif;
    color: #64748B;
    font-variant-numeric: tabular-nums;
    min-width: 44px;
    text-align: right;
}

#register-submit-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

#reg-otp-code::-webkit-outer-spin-button,
#reg-otp-code::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#reg-otp-code { -moz-appearance: textfield; }
