/* ==============================================
   MODULO LOGIN DE ACCESO — ESTILO INSTITUCIONAL
   =========================================== */

.acceso-contenedor {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 2rem;
    background: #f5f5f5;
}

.acceso-card {
    background: white;
    padding: 2rem;
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

/* Logotipo institucional */
.acceso-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.acceso-logo img {
    max-width: 160px;
    height: auto;
}

.acceso-titulo {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.acceso-error {
    background: #ffe5e5;
    padding: 1rem;
    border-left: 4px solid #d00;
    margin-bottom: 1rem;
    color: #900;
    font-size: 0.95rem;
}

.acceso-form {
    margin-top: 1rem;
}

.acceso-grupo {
    margin-bottom: 1.2rem;
}

.acceso-grupo label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: #444;
}

.acceso-grupo input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.acceso-boton {
    width: 100%;
    padding: 0.9rem;
    background: #0057b8;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
}

.acceso-boton:hover {
    background: #004a9c;
}