/* Establecer la imagen de fondo difuminada */
/* Asegúrate de poner tu imagen en 'img/fondo.jpg' */
body {
    background: url('../img/eds/k60.jpg') no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: blur(10px); /* Difuminado */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-size: cover;
}

/* Estilizar la tarjeta del formulario */
.card {
    background: rgba(255, 255, 255, 0.9); /* Fondo semitransparente */
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    padding: 20px;
}

/* Estilo de los textos */
h3 {
    color: #333;
    font-weight: bold;
}

/* Imagen superior del login */
img {
    width: 90px;
}

/* Botón de ingreso */
.btn-primary {
    background: #007bff;
    border: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0056b3;
}

/* Estilo de las alertas */
.alert {
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
}
