:root {
    --primary-gn: #1a2634;
    --accent-gn: #2ecc71;
    --accent-gn-hover: #27ae60;
    --bg-light: #f8f9fa;
}

/* --- CONTROL DE LOGO --- */
.login-logo {
    max-width: 220px;
    /* Tamaño máximo de ancho */
    max-height: 150px;
    /* Tamaño máximo de alto */
    width: auto;
    height: auto;
    object-fit: contain;
    /* Evita que la imagen se deforme */
    display: block;
    margin: 0 auto;
}

/* --- ESTRUCTURA --- */
body,
html {
    height: 100%;
    margin: 0;
    scroll-behavior: smooth;
    /* Scroll suave nativo */
}

.split-container {
    display: flex;
    height: 100vh;
}

.split-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.left-side {
    background-color: #ffffff;
}

.right-side {
    background: linear-gradient(135deg, var(--primary-gn) 0%, #243447 100%);
}

.content-box {
    width: 100%;
    max-width: 380px;
}

/* --- ESTILOS COMPONENTES --- */
.text-primary-gn {
    color: var(--primary-gn);
}

.btn-accent-gn {
    background-color: var(--accent-gn);
    color: white;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.btn-accent-gn:hover {
    background-color: var(--accent-gn-hover);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-primary-gn {
    border-color: var(--primary-gn);
    color: var(--primary-gn);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-gn);
}

.features-list {
    justify-content: center;
    gap: 20px;
}

/* --- RESPONSIVIDAD --- */
@media (max-width: 992px) {
    .split-container {
        flex-direction: column;
        height: auto;
    }

    .split-side {
        min-height: 100vh;
        width: 100%;
    }
}