/* Fondo degradado */
body {
    background: linear-gradient(135deg, #6e7dff, #5560ea);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.9)), url(https://controlhorario.toolhub.es/assets/img/back-log.jpg) !important;
    background-size: 500px;
}

/* Contenedor del formulario */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Estilo del formulario */
.login-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Título */
.login-form h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Mensaje de error */
.error-message {
    color: red;
    margin-bottom: 15px;
}

/* Campos del formulario */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    margin-top: 5px;
}

/* Botón de envío */
button {
    width: 100%;
    padding: 10px;
    background-color: #5560ea;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
}

button:hover {
    background-color: #6e7dff;
}

/* Enlace de recuperación de contraseña */
a {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #5560ea;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
