/* Login — panel institucional a la izquierda, formulario de acceso a la derecha. */

body {
    background: var(--surface);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.login-card { border-radius: 16px; overflow: hidden; }

/* Panel "¿Quiénes somos?" */
.about-panel {
    background: #fff;
    border-right: 1px solid var(--card-border);
    padding: 56px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}
.about-panel .logo-row { text-align: center; margin-bottom: 26px; }
.about-panel img { width: 170px; height: auto; object-fit: contain; margin-bottom: 16px; }
.about-panel .eyebrow {
    color: #c9971f;
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .09em;
}
.about-panel h2 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--brand);
    margin: 4px 0 0;
    line-height: 1.25;
}
.about-panel p { font-size: 1.02rem; line-height: 1.75; color: #5a6472; text-align: justify; }
.about-panel p + p { margin-top: 16px; }

/* Panel del formulario */
.form-panel {
    padding: 56px 48px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.form-panel .form-inner { width: 100%; max-width: 300px; }

.login-header { text-align: center; margin-bottom: 28px; }
.login-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: .03em;
}
.login-header h1 {
    font-size: .88rem;
    font-weight: 400;
    color: var(--text-muted-2);
    margin: 6px 0 0;
}

.form-panel .form-label { font-size: .8rem; font-weight: 600; color: #374151; margin-bottom: 4px; }

.login-pie { text-align: center; margin: 20px 0 0; font-size: .82rem; color: var(--text-muted-2); }
.login-pie a { color: var(--brand); font-weight: 600; }

@media (max-width: 767.98px) {
    .about-panel { padding: 36px 28px; border-right: none; border-bottom: 1px solid var(--card-border); }
    .about-panel p { font-size: .95rem; }
    .form-panel { padding: 36px 28px; }
}
