body {
    margin: 0;
    font-family: 'Arial', sans-serif; /* O tu fuente preferida */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #7e1d87 0%, #ee008f 100%);
    color: #333;
    overflow: hidden; /* Evitar scrollbar durante la transición */
}

#recover-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Sombra */
    text-align: center;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    position: relative; /* Necesario para transiciones si las agregas */
}

#recover-form input[type="email"] {
    width: calc(100% - 20px); /* Adjust padding */
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc; /* Borde */
    border-radius: 5px;
    font-size: 1em;
}

#send-reset-email {
    /* Replicar estilos del botón de login */
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #7e1d87 0%, #ee008f 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

#send-reset-email:hover {
    /* Estilos para hover */
    background: linear-gradient(to right, #6e1c7b 0%, #dd007f 100%);
    transform: translateY(-2px);
}

#send-reset-email:active {
    /* Estilos para active */
    transform: translateY(0);
}

/* Estilos para el párrafo de mensajes */
#msg {
    margin-top: 20px;
    font-size: 0.9em;
    color: #e74c3c; /* Default color for messages, adjust if needed */
    min-height: 1em;
}

/* Estilos para el enlace Volver al Inicio */
.back-to-login {
 text-align: center;
 margin-top: 20px;
 font-size: 1em; /* Puedes ajustar el tamaño si lo necesitas */
 color: #555; /* Color similar al texto del enlace de registro si aplica */
}

.back-to-login a {
 color: #6a11cb; /* Color del enlace, similar al de registro en index.css */
 text-decoration: none;
 font-weight: bold;
 transition: color 0.3s ease, text-decoration 0.3s ease;
}

.back-to-login a:hover {
 color: #2575fc; /* Color en hover, similar al de registro en index.css */
}