﻿/* =======================================================
   FORGOT PASSWORD
======================================================= */

.forgot-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--nav-height) - var(--footer-height));
    padding: 40px 20px;
}

/* TARJETA */

.forgot-card {
    width: 100%;
    max-width: 480px;
    background: rgba(25, 40, 84, 0.95);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
    border-top: 6px solid #fdd757;
    color: #ffffff;
}

/* HEADER */

.forgot-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.forgot-header h4 {
    color: #ffffff;
    font-weight: 700;
}

.forgot-header p {
    color: #cfd6e6;
    font-size: .9rem;
}

/* LABELS */
.forgot-label{
    color:#cfd6e6;
    font-size:.85rem;
    font-weight:500;
    margin-bottom:4px;
}

/* INPUT */

.forgot-card .form-control {
    background: #f5f7ff;
    border: none;
    border-radius: 10px;
    padding: .75rem .9rem;
    color: #192854;
}

.forgot-card .form-control:focus {
    box-shadow: 0 0 0 3px rgba(253,215,87,0.35);
}

/* BOTON PRINCIPAL */

.btn-recovery {
    background: #fdd757;
    color: #192854;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: .8rem;
    transition: .25s;
}

.btn-recovery:hover {
    background: #ffd84d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* LINK SOPORTE */

.support-link {
    color: #cfd6e6;
    font-size: .85rem;
    text-decoration: none;
}

.support-link:hover {
    color: #fdd757;
}

/* PANEL SOPORTE */

.support-panel {
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.4rem;
    border: 1px solid rgba(255,255,255,0.15);
}

/* FOOTER */

.forgot-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.forgot-footer a {
    color: #cfd6e6;
    text-decoration: none;
}

.forgot-footer a:hover {
    color: #fdd757;
}
