
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom right, #004d99, #ff4d4d); /* Gradiente de azul a rojo */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fondo semitransparente */
    border-radius: 10px;
}

.login-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-form h1 {
    margin: 0;
    color: #004d99; /* Color azul para el título */
    font-size: 2em;
}

.login-form label {
    display: block;
    margin-top: 20px;
    color: #333;
}

.login-form input {
    width: calc(100% - 20px);
    padding: 10px;
    margin-top: 5px;
    border: 2px solid #004d99;
    border-radius: 5px;
    font-size: 1em;
}

.login-form input:focus {
    border-color: #ff4d4d; /* Cambia el color del borde al enfocar el campo */
    outline: none;
}

.login-form button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #004d99; /* Color azul para el botón */
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-form button:hover {
    background: #003366; /* Azul más oscuro al pasar el ratón */
}

.login-form button:active {
    background: #002244; /* Azul aún más oscuro al hacer clic */
}

.back-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff4d4d; /* Color rojo para el botón "Volver" */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    transition: background 0.3s ease;
}

.back-button:hover {
    background: #cc0000; /* Rojo más oscuro al pasar el ratón */
}

.back-button:active {
    background: #990000; /* Rojo aún más oscuro al hacer clic */
}
