.login-container {
    display: flex;
    min-height: 100vh;
    flex-wrap: nowrap !important;
}

.login-left {
    flex: 1;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-right {
    flex: 1;
    background: linear-gradient(135deg, var(--azul-medio) 0%, var(--azul-principal) 50%, var(--azul-escuro) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: white;
}

.login-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.login-card h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.login-card .uk-input {
    border-radius: 8px;
    padding: 12px 16px;
    height: auto;
    border: 1px solid #e0e0e0;
    transition: border-color 0.2s;
}

.login-card .uk-input:focus {
    border-color: var(--primary-color, var(--azul-principal));
    outline: none;
}

.login-btn {
    background: var(--primary-color, var(--azul-principal));
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 24px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
}

.login-btn:hover {
    background: color-mix(in srgb, var(--primary-color, var(--azul-principal)) 85%, black);
    color: white;
}

.promo-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

.promo-text {
    font-size: 1.1rem;
    opacity: 0.9;
    text-align: center;
    line-height: 1.6;
    max-width: 400px;
}

.promo-btn {
    background: white;
    color: var(--azul-principal);
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.qrcode-section {
    margin-top: 16px;
    text-align: center;
}

.qrcode-section h4 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-weight: 500;
}

#qrcode {
    background: white;
    padding: 16px;
    border-radius: 12px;
    display: inline-block;
}

.link-text {
    color: var(--primary-color, var(--azul-principal));
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.link-text:hover {
    opacity: 0.8;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}

.divider span {
    padding: 0 16px;
    color: #888;
    font-size: 0.875rem;
}

@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
    }

    .login-right {
        flex: none;
        padding: 32px;
        margin: 0;
        height: fit-content;
        order: -1;
    }

    .login-left {
        padding: 20px;
    }

    .promo-title {
        font-size: 1.5rem;
        margin: 0;
    }

    .promo-text {
        display: none;
    }

    .qrcode-section {
        display: none;
    }
}