/* General */
body {
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    background: url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contenedor del formulario */
#container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    width: 350px;
    text-align: center;
}

/* Títulos */
#container h3 {
    font-size: 1.8rem;
    color: #ffcc00; /* Amarillo girasol */
    margin-bottom: 20px;
    font-weight: bold;
}

/* Estilo de los inputs */
#container input[type="text"],
#container input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 2px solid #e3e3e3;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

#container input[type="text"]:focus,
#container input[type="password"]:focus {
    border-color: #7bc043; /* Verde primavera */
    outline: none;
}

/* Botón de enviar */
#container input[type="submit"] {
    background: #ffcc00; /* Amarillo girasol */
    color: #fff;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

#container input[type="submit"]:hover {
    background: #f4a700; /* Un tono más oscuro del amarillo */
}

/* Imagen de login */
#container img {
    display: block;
    margin: 0 auto;
}

/* Estilo para las alertas */
.alert {
    margin: 15px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(255, 204, 0, 0.2); /* Fondo amarillo claro */
    color: #cc0000; /* Rojo oscuro para texto */
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    display: none; /* Ocultar por defecto */
}

/* Mostrar alerta si está presente */
.alert:empty {
    display: none;
}

.alert:not(:empty) {
    display: block;
}

/* Responsividad */
@media screen and (max-width: 480px) {
    #container {
        width: 90%;
        padding: 20px;
    }

    #container h3 {
        font-size: 1.5rem;
    }

    #container input[type="submit"] {
        font-size: 0.9rem;
    }
}
