/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    color: #333;
}

/* Estilo para la imagen */
.logo {
    width: 100px;  /* Ajusta el tamaño de la imagen según convenga */
    margin-bottom: 20px;
    border-radius: 0%; /* Añade bordes redondeados si la imagen lo permite */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Le da una sombra suave */
}

.input-container {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #4A90E2;
    outline: none;
}

.btn-login {
    width: 100%;
    padding: 10px;
    background-color: #4A90E2;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #357ABD;
}
/* Estilo para el mensaje de error */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}
.footer {
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: #f1f1f1;
    font-size: 14px;
}