/**
 * Forgot Password Page Styles
 * Extracted from page-forgot-password.php inline styles
 *
 * @package sc_events
 */

/* ===== Steps Indicator ===== */
.sc-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: var(--sc-space-8);
    padding: 0 var(--sc-space-4);
}

.sc-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.sc-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    border: 2px solid var(--sc-border-light);
    color: var(--sc-text-muted);
    background: transparent;
    transition: all 0.3s ease;
}

.sc-step span {
    font-size: 12px;
    color: var(--sc-text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.sc-step.active .sc-step-circle {
    border-color: var(--sc-primary);
    background: var(--sc-primary);
    color: #fff;
    box-shadow: 0 0 15px var(--sc-primary-alpha-30);
}

.sc-step.active span {
    color: var(--sc-primary);
}

.sc-step.done .sc-step-circle {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}

.sc-step.done span {
    color: #22c55e;
}

.sc-step-line {
    flex: 1;
    height: 2px;
    background: var(--sc-border-light);
    margin: 0 8px;
    margin-bottom: 22px;
    transition: background 0.3s ease;
}

.sc-step-line.active {
    background: var(--sc-primary);
}

.sc-step-line.done {
    background: #22c55e;
}

/* ===== OTP Sent Notice ===== */
.sc-otp-sent-notice {
    display: flex;
    align-items: center;
    gap: var(--sc-space-3);
    padding: var(--sc-space-4);
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--sc-radius-lg);
    margin-bottom: var(--sc-space-6);
}

.sc-otp-sent-notice i {
    font-size: 24px;
    color: #22c55e;
    flex-shrink: 0;
}

.sc-otp-sent-notice p {
    margin: 0;
    font-size: var(--sc-text-sm);
    color: var(--sc-text-secondary);
    line-height: 1.5;
}

.sc-otp-sent-notice strong {
    color: var(--sc-text-primary);
    word-break: break-all;
}

/* ===== OTP Input ===== */
.sc-otp-input {
    text-align: center;
    font-size: 24px !important;
    font-weight: 700;
    letter-spacing: 8px;
    font-family: monospace;
}

/* ===== Resend Row ===== */
.sc-resend-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sc-space-2);
    margin-top: var(--sc-space-4);
}

.sc-resend-text {
    font-size: var(--sc-text-sm);
    color: var(--sc-text-muted);
}

.sc-resend-btn {
    background: none;
    border: none;
    color: var(--sc-primary);
    font-size: var(--sc-text-sm);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

.sc-resend-btn:disabled {
    color: var(--sc-text-muted);
    cursor: not-allowed;
    opacity: 0.6;
}

.sc-resend-btn:not(:disabled):hover {
    text-decoration: underline;
}

/* ===== Verify Success Badge ===== */
.sc-verify-success {
    text-align: center;
    margin-bottom: var(--sc-space-6);
}

.sc-verify-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sc-space-3);
}

.sc-verify-icon i {
    font-size: 24px;
    color: #22c55e;
}

.sc-success-text {
    font-size: var(--sc-text-lg);
    font-weight: 700;
    color: #22c55e;
    margin: 0 0 4px;
}

.sc-help-text {
    font-size: var(--sc-text-sm);
    color: var(--sc-text-muted);
    margin: 0;
}
