/* Estilos generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f3f3f3;
}

/* Estilos del contenedor del login */
.login-container {
    background: #fff;
    width: 350px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Estilos de la imagen */
.login-container img {
    width: 100px;
    margin-bottom: 15px;
}

/* Estilos del formulario */
.login-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Estilos del botón */
.login-container button {
    width: 100%;
    padding: 10px;
    background: #FF6800;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.login-container button:hover {
    background: #ff6600b6;
}

/* Estilo de footer*/
.footer {
    font-size: 12px;
    text-align: center;
    padding: 10px;
    position: absolute;
    bottom: 10px;
}


/* Notificaciones */
#notification {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    display: none;
    color: white;
    font-weight: bold;
}

.success {
    background-color: green;
}

.error {
    background-color: red;
}
