/* Forgot Password — step indicator & OTP */
[x-cloak] { display: none !important; }

.fp-steps {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
}

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

.fp-step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #94a3b8;
    background: #fff;
    transition: all .2s;
}

.fp-step--active .fp-step-dot {
    border-color: #1A3561;
    background: #1A3561;
    color: #fff;
}

.fp-step--done .fp-step-dot {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}

.fp-step-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
    white-space: nowrap;
}

.fp-step--active .fp-step-label,
.fp-step--done .fp-step-label {
    color: #1A3561;
}

.fp-step-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    margin: 0 8px;
    margin-bottom: 16px;
}

.fp-otp-input {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 12px;
    text-align: center;
    font-family: monospace;
}

.fp-link-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

.fp-link-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@keyframes fp-spin {
    to { transform: rotate(360deg); }
}

.fp-spin {
    display: inline-block;
    animation: fp-spin .7s linear infinite;
}
