/* Estilos específicos para la página de recuperación de contraseña */

/* Imagen de fondo */
html body .fondoColor {
    position: relative;
    background: url('/imagenesPagina/optimizadas/Header.webp') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Capa de superposición con difuminado */
html body .fondoColor .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

/* Tarjeta de formulario */
html body .fondoColor .card {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(30, 43, 57, 0.2);
    z-index: 2;
    position: relative;
    max-width: 400px;
    width: 100%;
}

/* Título principal */
html body .fondoColor .card .titlee {
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    color: #1E2B39;
}

/* Mensaje informativo */
html body .fondoColor .card .text-muted {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Input y grupo de iconos */
html body .fondoColor .card .input-group-text {
    background: #1E2B39;
    color: white;
    border-radius: 12px;
    border: 1px solid #1E2B39;
}

html body .fondoColor .card .form-control {
    border-radius: 30px;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

html body .fondoColor .card .form-control:focus {
    border-color: #1E2B39;
    box-shadow: 0 0 0 0.2rem rgba(30, 43, 57, 0.25);
}

/* Botón de envío */
html body .fondoColor .card .btn-primary {
    background-color: #1E2B39;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    height: 50px;
}

html body .fondoColor .card .btn-primary:hover {
    background-color: #e07c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 124, 0, 0.3);
}

/* Enlace de regreso */
html body .fondoColor .card .enlace-registro {
    color: #1E2B39;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    position: relative;
    display: block;
    text-align: center;
    margin-top: 10px;
}

html body .fondoColor .card .enlace-registro::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #1E2B39;
    transition: width 0.3s ease-in-out;
    position: absolute;
    left: 0;
    bottom: -2px;
}

html body .fondoColor .card .enlace-registro:hover::after {
    width: 100%;
}

html body .fondoColor .card .enlace-registro:hover {
    color: #e07c00;
    text-decoration: none;
} 