﻿/* =======================================================
   MENSAJE RECUPERACIÓN CONTRASEÑA
======================================================= */

.recovery-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--nav-height) - var(--footer-height));
    padding: 20px;
}

.recovery-card {
    max-width: 500px;
    width: 100%;
    background: rgba(25,40,84,0.95);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    color: white;
    border-top: 6px solid #fdd757;
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.recovery-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.recovery-text {
    color: #cfd6e6;
    font-size: .95rem;
    margin-bottom: 2rem;
}

.recovery-btn {
    background: #fdd757;
    color: #192854;
    border: none;
    border-radius: 10px;
    padding: .7rem 1.5rem;
    font-weight: 700;
    transition: .25s;
}

    .recovery-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    }
