/* Estilos generales para centrar el contenedor */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    margin: 0;
}

/* Estilo del contenedor de recuperación */
.recovery-container {
    text-align: center;
    background: #ffffff;
    padding: 20px 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 1px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Estilo del logo y mensaje motivacional */
.logo-container {
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    cursor: pointer;
}

.motivational-message {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

/* Estilos de encabezado */
h1 {
    font-size: 1.5rem;
    color: #333;
}

p {
    color: #666;
    margin-bottom: 20px;
}

/* Estilos del input y botón */
input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button {
    width: 100%;
    background-color: #218838;
    color: white;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #196c31;
}
