/* ============================================================
   KAKUSHINSOFT — Recover Password (extensión de login.css)
   ============================================================ */

/* ============================================================
   HERO ICON
   ============================================================ */
.recover-hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.2rem;
}
.recover-hero__icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow:
        0 8px 20px -6px rgba(28, 107, 255, 0.6),
        0 0 0 6px rgba(28, 107, 255, 0.08);
    position: relative;
    overflow: hidden;
}
.recover-hero__icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35) 0%, transparent 60%);
}
.recover-hero__icon i {
    position: relative;
    z-index: 1;
}

/* ============================================================
   STEPS (1 · 2 · 3)
   ============================================================ */
.recover-steps {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.5rem;
    padding: 0.85rem 1rem;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}
.recover-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}
.recover-step__dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--surface);
    border: 1.5px solid var(--border-strong);
    color: var(--text-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
}
.recover-step__label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
}
.recover-step__line {
    flex: 1;
    height: 2px;
    background: var(--border);
    border-radius: var(--r-pill);
    min-width: 20px;
}
.recover-step--active .recover-step__dot {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px -2px rgba(28, 107, 255, 0.4);
}
.recover-step--active .recover-step__label {
    color: var(--text);
}

/* ============================================================
   ALERTA (status de Laravel)
   ============================================================ */
.recover-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border-radius: var(--r-md);
    margin-bottom: 1.2rem;
    border: 1px solid;
    animation: alert-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes alert-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.recover-alert--success {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
    color: #065f46;
}
.recover-alert i {
    font-size: 1.4rem;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}
.recover-alert strong {
    display: block;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 2px;
}
.recover-alert span {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.45;
}

/* ============================================================
   INFO CHIP (expiración del enlace)
   ============================================================ */
.recover-info {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 0.95rem;
    background: rgba(28, 107, 255, 0.06);
    border: 1px solid rgba(28, 107, 255, 0.18);
    border-radius: var(--r-md);
    margin: 0.5rem 0 1rem;
    font-size: 1rem;
    color: var(--text);
}
.recover-info i {
    color: var(--primary);
    font-size: 1.05rem;
    flex-shrink: 0;
}
.recover-info span {
    color: var(--text-muted);
}
.recover-info strong {
    color: var(--text);
    font-weight: 700;
}

/* ============================================================
   HELP ROW
   ============================================================ */
.recover-help {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    margin-top: 1.5rem;
}
.recover-help__item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.85rem 0.95rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: var(--transition);
}
.recover-help__item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(13, 59, 130, 0.12);
}
.recover-help__item i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.recover-help__item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 2px;
}
.recover-help__item small {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 540px) {
    .recover-hero__icon {
        width: 64px;
        height: 64px;
        font-size: 1.6rem;
        border-radius: 16px;
    }
    .recover-steps {
        padding: 0.65rem 0.7rem;
        gap: 0.35rem;
    }
    .recover-step__dot {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }
    .recover-step__label {
        font-size: 0.78rem;
    }
    .recover-help {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .recover-step__label {
        display: none;
    }
}