/**
 * Registration OTP Styles — My Account Page
 *
 * Styles for: Phone + OTP button layout, OTP input section,
 * status messages, and verified state on the WooCommerce
 * registration form.
 *
 * @package Ratna_Gems
 * @since 3.8.0
 */

/* =========================================================================
   Phone Input + Send OTP Button Row
   ========================================================================= */

.rg-reg-phone-input-wrap {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.rg-reg-phone-input-wrap input[type="tel"] {
    flex: 1;
    min-width: 0;
}

.rg-reg-otp-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background-color: #004E81;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.15s ease;
}

.rg-reg-otp-btn:hover {
    background-color: #003a61;
}

.rg-reg-otp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.rg-reg-otp-btn.rg-otp-verified,
.rg-reg-otp-btn.rg-otp-verified:hover,
.rg-reg-otp-btn.rg-otp-verified:disabled {
    background-color: #28a745;
    opacity: 1;
    cursor: default;
}

/* =========================================================================
   OTP Section — Code Input + Verify Button
   ========================================================================= */

.rg-reg-otp-section {
    margin: 0 0 16px;
    padding: 14px 16px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 6px;
}

.rg-reg-otp-section label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #444;
}

.rg-reg-otp-input-wrap {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.rg-reg-otp-input-wrap input {
    max-width: 160px;
    letter-spacing: 4px;
    text-align: center;
    font-size: 16px;
}

/* =========================================================================
   OTP Status Messages
   ========================================================================= */

.rg-reg-otp-status {
    margin: 8px 0 0;
    font-size: 13px;
    font-weight: 500;
    min-height: 18px;
}

.rg-reg-otp-status.rg-otp-success {
    color: #28a745;
}

.rg-reg-otp-status.rg-otp-error {
    color: #dc3545;
}

/* =========================================================================
   Resend OTP Link
   ========================================================================= */

.rg-reg-otp-resend {
    margin: 6px 0 0;
    font-size: 13px;
}

.rg-reg-otp-resend a {
    color: #004E81;
    text-decoration: underline;
    cursor: pointer;
}

.rg-reg-otp-resend a:hover {
    color: #003a61;
}

/* =========================================================================
   Hidden reCAPTCHA Container
   ========================================================================= */

#rg-reg-page-recaptcha {
    position: absolute;
    left: -9999px;
    visibility: hidden;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* =========================================================================
   Responsive — Small Phones
   ========================================================================= */

@media (max-width: 480px) {
    .rg-reg-phone-input-wrap {
        flex-direction: column;
    }

    .rg-reg-otp-input-wrap {
        flex-direction: column;
    }

    .rg-reg-otp-input-wrap input {
        max-width: 100%;
    }
}
