/* ── BIT2025 Forgot Password — Extensions on top of login.css ── */

/* Stepper row */
.fp-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.fp-step-dot {
    display: flex;
    align-items: center;
}

.fp-step-dot .dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: #999;
    transition: background .3s, color .3s;
}

.fp-step-dot.active .dot {
    background: #DE3163;
    color: #fff;
}

.fp-step-dot.done .dot {
    background: #27ae60;
    color: #fff;
}

.fp-step-line {
    width: 36px;
    height: 2px;
    background: #eee;
    transition: background .3s;
}

.fp-step-line.active {
    background: #DE3163;
}

/* Step visibility */
.fp-step {
    display: none;
}

.fp-step.active {
    display: block;
    animation: fpFadeIn .3s ease;
}

@keyframes fpFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* OTP inputs */
.otp-inputs {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin: 1rem 0;
}

.otp-inputs input {
    width: 46px;
    height: 50px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    background: #f8f9fa;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.otp-inputs input:focus {
    border-color: #DE3163;
    box-shadow: 0 0 0 3px rgba(222, 49, 99, .1);
    background: #fff;
}

/* Password strength */
.pwd-strength {
    height: 4px;
    border-radius: 2px;
    background: #eee;
    margin-top: .4rem;
    overflow: hidden;
}

.pwd-strength-bar {
    height: 100%;
    border-radius: 2px;
    width: 0;
    transition: width .3s, background .3s;
}

/* Hints and errors */
.fp-hint {
    font-size: .82rem;
    color: #7f8c8d;
    margin-top: .4rem;
}

.fp-error {
    color: #DE3163;
    font-size: .82rem;
    margin-top: .4rem;
    min-height: 1rem;
}

/* Labels */
.fp-label {
    display: block;
    font-weight: 600;
    margin-bottom: .5rem;
    font-size: .9rem;
    color: #2c3e50;
}

.fp-label-gap {
    margin-top: 1rem;
}

/* Success state */
.fp-success-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.fp-success-icon i {
    font-size: 3rem;
    color: #27ae60;
}

@media (max-width: 576px) {
    .otp-inputs input {
        width: 40px;
        height: 44px;
        font-size: 1.1rem;
    }
}