/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background: url('../img/fondo.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Contenedor del formulario */
.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
    border: 2px solid #2980b9;
}

h2 {
    color: #2c3e50;
    font-weight: bold;
}

/* Estilos para los inputs y select */
input, select, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none; /* Evita el borde azul de algunos navegadores */
}

.error-message {
    color: #d8000c; /* Rojo oscuro */
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    font-weight: bold;
}



/* Botón de inicio de sesión */
button {
    background-color: #3498db;
    color: white;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background-color: #2980b9;
}

/* Iconos en los inputs */
input[type="email"] {
    background: url('https://img.icons8.com/ios/20/000000/email.png') no-repeat left center;
    padding-left: 30px;
}

input[type="password"] {
    background: url('https://img.icons8.com/ios/20/000000/lock.png') no-repeat left center;
    padding-left: 30px;
}

select {
    background: url('https://img.icons8.com/ios/20/000000/school.png') no-repeat left center;
    padding-left: 30px;
}

/* Estilos para dispositivos móviles */
@media (max-width: 600px) {
    .container {
        width: 90%;
        padding: 15px;
    }

    input, select, button {
        font-size: 14px;
        padding: 10px;
    }

    h2 {
        font-size: 18px;
    }
}
