/* ===== CONTENEDOR PRINCIPAL ===== */

.recuperar-container {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f3f4f6;
    padding: 20px;
}

/* ===== TARJETA ===== */

.recuperar-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    animation: slideIn 0.4s ease;
}

/* Animación ligera */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(15px); }
    to   { opacity: 1; transform: translateY(0); }
}

.recuperar-card h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 26px;
    font-weight: 600;
}

/* ===== MENSAJES ===== */

.mensaje {
    background: #e8f4ff;
    color: #004b8d;
    padding: 12px;
    margin-bottom: 18px;
    border-left: 4px solid #007bff;
    border-radius: 6px;
    font-weight: 500;
}

/* ===== FORMULARIO ===== */

label {
    text-align: left;
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}

input[type="email"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #bbb;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.2s;
}

input[type="email"]:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 4px rgba(0,123,255,0.4);
}

/* ===== BOTÓN ===== */

button {
    width: 100%;
    padding: 12px;
    background: #007bff;
    border: none;
    color: white;
    font-size: 17px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #005fcc;
}

/* ===== VOLVER AL LOGIN ===== */

.volver {
    margin-top: 15px;
}

.volver a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.volver a:hover {
    text-decoration: underline;
}
