/* Restablecemos los márgenes por defecto */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif; /* Más adelante esto lo controlará el Súper Admin */
}

body {
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ocupa toda la altura de la pantalla */
}

.login-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 400px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); /* Efecto de ventana flotante */
    text-align: center;
}

.login-container img {
    max-width: 150px;
    margin-bottom: 20px;
}

.login-container h2 {
    color: #333;
    margin-bottom: 30px;
}

/* Estilos de los campos de texto */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #0056b3; /* Color azul al seleccionar, luego será dinámico */
}

/* Estilo del botón */
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #004494;
}

/* Estilo para los mensajes de error */
.mensaje-error {
    background-color: #ffeaea;
    color: #d9534f;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none; /* Oculto por defecto */
}