/* Estilo para el cuerpo del documento */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #00008b, #0000ff); /* Degradado de azul rey */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilo para el contenedor del formulario de inicio de sesión */
.login-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

/* Estilo para los elementos del formulario */
label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input[type="text"],
input[type="password"],
input[type="email"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #00008b;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background-color: #0000ff;
}

/* Enlace para recuperar la contraseña */
p {
    margin-top: 15px;
}

p a {
    color: #00008b;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}
