/* ============================================================
   OTP LOGIN — matches ForgetPass.html layout
   ============================================================ */

.otp-section {
    display: none;
}

.otp-section.active {
    display: block;
}

.otp-section .input-group {
    margin-bottom: 18px;
}

.otp-info-label {
    text-align: center;
    margin-bottom: 20px;
}

.otp-info-label p {
    color: #666;
    font-size: 13px;
    margin: 0 0 4px 0;
}

.otp-info-label .otp-email-highlight {
    color: #2d7ff9;
    font-weight: 600;
}

/* Amazon/Flipkart style OTP boxes */
.otp-boxes-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 18px;
}

.otp-boxes-row input {
    width: 42px;
    height: 46px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    outline: none;
    color: #111;
    background: #fff;
    caret-color: #2d7ff9;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.otp-boxes-row input:focus {
    border-color: #2d7ff9;
    box-shadow: 0 0 0 3px rgba(45, 127, 249, 0.12);
}

.otp-boxes-row input.filled {
    border-color: #2d7ff9;
    background: #f0f6ff;
}

.otp-timer {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-bottom: 6px;
}

.otp-timer span {
    color: #2d7ff9;
    font-weight: 600;
}

.otp-resend {
    text-align: center;
    margin-bottom: 18px;
}

.otp-resend a {
    color: #2d7ff9;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
}

.otp-resend a:hover {
    text-decoration: underline;
}

.otp-resend a.disabled {
    color: #ccc;
    pointer-events: none;
}