/* ============================================
   Limber Cloud — Login Premium (Enterprise SaaS)
   Vista: Login/IndexPremium
   Variables preparadas para dark/light mode futuro
   ============================================ */

.lc-login[data-theme="light"] {
    --lc-bg-panel: #fafbfc;
    --lc-bg-panel-alt: #ffffff;
    --lc-text-primary: #0f172a;
    --lc-text-secondary: #64748b;
    --lc-text-muted: #94a3b8;
    --lc-border: #e2e8f0;
    --lc-border-focus: rgba(102, 126, 234, 0.45);
    --lc-input-bg: #ffffff;
    --lc-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
    --lc-shadow-md: 0 4px 24px rgba(15, 23, 42, 0.06);
    --lc-shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.08);
    --lc-hero-overlay: linear-gradient(
        135deg,
        rgba(10, 25, 41, 0.88) 0%,
        rgba(30, 41, 90, 0.82) 45%,
        rgba(79, 70, 229, 0.75) 100%
    );
    --lc-glass: rgba(255, 255, 255, 0.06);
    --lc-glass-border: rgba(255, 255, 255, 0.12);
}

.lc-login[data-theme="dark"] {
    --lc-bg-panel: #0f172a;
    --lc-bg-panel-alt: #1e293b;
    --lc-text-primary: #f8fafc;
    --lc-text-secondary: #94a3b8;
    --lc-text-muted: #64748b;
    --lc-border: #334155;
    --lc-border-focus: rgba(129, 140, 248, 0.5);
    --lc-input-bg: #1e293b;
    --lc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --lc-shadow-md: 0 4px 24px rgba(0, 0, 0, 0.25);
    --lc-shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.35);
    --lc-hero-overlay: linear-gradient(
        135deg,
        rgba(10, 25, 41, 0.92) 0%,
        rgba(30, 41, 90, 0.88) 50%,
        rgba(79, 70, 229, 0.85) 100%
    );
    --lc-glass: rgba(255, 255, 255, 0.04);
    --lc-glass-border: rgba(255, 255, 255, 0.08);
}

.lc-login {
    --lc-brand-blue: #3b7ddd;
    --lc-brand-blue-dark: #0a1929;
    --lc-gradient-start: #667eea;
    --lc-gradient-mid: #5b6fd6;
    --lc-gradient-end: #764ba2;
    --lc-gradient-accent: #4facfe;
    --lc-radius-sm: 10px;
    --lc-radius-md: 14px;
    --lc-radius-lg: 20px;
    --lc-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --lc-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    min-height: 100dvh;
    font-family: var(--lc-font);
    color: var(--lc-text-primary);
    background: var(--lc-bg-panel);
    -webkit-font-smoothing: antialiased;
    animation: lc-fade-in 0.5s ease-out;
}

@keyframes lc-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* —— Hero (izquierda) —— */
.lc-login__hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(14px, 2.5vw, 22px) clamp(28px, 4vw, 48px) clamp(24px, 4vw, 40px);
}

.lc-login__hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: var(--lc-brand-blue-dark);
    background-image: url('/img/gente_trabajando.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 8s ease-out;
}

.lc-login__hero:hover .lc-login__hero-bg {
    transform: scale(1.05);
}

.lc-login__hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--lc-hero-overlay);
}

.lc-login__hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 560px;
    padding-bottom: clamp(16px, 3vh, 28px);
}

.lc-login__brand {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 0.375rem;
    padding-top: 0;
    margin-bottom: 0.625rem;
}

.lc-login__brand-cloud {
    font-size: 2.5rem;
    line-height: 1;
    color: #fff;
    opacity: 0.95;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}

.lc-login__brand-text {
    font-size: clamp(1.375rem, 2vw, 1.625rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.lc-login__headline {
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    margin: 0 0 0.75rem;
}

.lc-login__headline-line {
    display: block;
}

.lc-login__highlight {
    background: linear-gradient(135deg, var(--lc-gradient-accent) 0%, var(--lc-gradient-start) 50%, var(--lc-gradient-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.lc-login__subcopy {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 1.25rem;
    max-width: 600px;
    text-align: left;
}

.lc-login__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lc-login__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: var(--lc-glass);
    border: 1px solid var(--lc-glass-border);
    border-radius: var(--lc-radius-md);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    transition: background var(--lc-transition), border-color var(--lc-transition), transform var(--lc-transition);
}

.lc-login__feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
}

.lc-login__feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--lc-radius-sm);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.1rem;
}

.lc-login__feature-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 2px;
}

.lc-login__feature-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.45;
}

.lc-login__hero-footer {
    position: relative;
    z-index: 2;
    margin-top: auto;
    padding-top: clamp(16px, 3vh, 24px);
}

.lc-login__hero-contact {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 6px;
    line-height: 1.45;
}

.lc-login__hero-contact:last-child {
    margin-bottom: 0;
}

.lc-login__hero-contact i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 12px;
    opacity: 0.85;
}

.lc-login__hero-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--lc-transition);
}

.lc-login__hero-contact a:hover {
    color: rgba(255, 255, 255, 0.95);
}

/* —— Panel (derecha) —— */
.lc-login__panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(32px, 5vw, 64px);
    background: var(--lc-bg-panel);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.lc-login__panel-inner {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: lc-slide-up 0.55s ease-out 0.1s both;
}

@keyframes lc-slide-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lc-login__logo-wrap {
    text-align: center;
    margin-bottom: 1rem;
}

.lc-login__logo-wrap img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.lc-login__form-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--lc-text-primary);
    margin: 0 0 0.35rem;
    text-align: center;
}

.lc-login__form-subtitle {
    font-size: 0.9375rem;
    color: var(--lc-text-secondary);
    margin: 0 0 16px;
    text-align: center;
    line-height: 1.5;
}

.lc-login__alert {
    border-radius: var(--lc-radius-md);
    border: none;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    box-shadow: var(--lc-shadow-sm);
}

.lc-login__field {
    margin-bottom: 1.25rem;
}

.lc-login__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--lc-text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.lc-login__input-wrap {
    position: relative;
}

.lc-login__input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-family: inherit;
    color: var(--lc-text-primary);
    background: var(--lc-input-bg);
    border: 1px solid var(--lc-border);
    border-radius: var(--lc-radius-md);
    box-shadow: var(--lc-shadow-sm);
    transition: border-color var(--lc-transition), box-shadow var(--lc-transition), background var(--lc-transition);
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.lc-login__input::placeholder {
    color: var(--lc-text-muted);
}

.lc-login__input:hover {
    border-color: #cbd5e1;
}

.lc-login__input:focus {
    outline: none;
    border-color: var(--lc-gradient-start);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.12);
}

.lc-login__input-wrap--password .lc-login__input {
    padding-right: 3rem;
}

.lc-login__toggle-pwd {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--lc-text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--lc-radius-sm);
    transition: color var(--lc-transition), background var(--lc-transition);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-login__toggle-pwd:hover {
    color: var(--lc-gradient-start);
    background: rgba(102, 126, 234, 0.08);
}

.lc-login__submit {
    position: relative;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.9375rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: inherit;
    color: #fff;
    border: none;
    border-radius: var(--lc-radius-md);
    cursor: pointer;
    background: linear-gradient(135deg, var(--lc-gradient-start) 0%, var(--lc-gradient-mid) 45%, var(--lc-gradient-end) 100%);
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
    transition: transform var(--lc-transition), box-shadow var(--lc-transition), opacity var(--lc-transition);
    min-height: 52px;
}

.lc-login__submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.lc-login__submit:active:not(:disabled) {
    transform: translateY(0);
}

.lc-login__submit:disabled {
    cursor: not-allowed;
    opacity: 0.85;
}

.lc-login__submit-arrow {
    transition: transform var(--lc-transition);
}

.lc-login__submit:hover:not(:disabled) .lc-login__submit-arrow {
    transform: translateX(3px);
}

.lc-login__progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.95));
    border-radius: var(--lc-radius-md);
    opacity: 0;
    z-index: 0;
    transition: width 0.08s linear;
}

.lc-login__submit-text,
.lc-login__submit-arrow {
    position: relative;
    z-index: 1;
}

.lc-login__forgot {
    display: block;
    text-align: center;
    margin-top: 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--lc-text-secondary);
    text-decoration: none;
    transition: color var(--lc-transition);
}

.lc-login__forgot:hover {
    color: var(--lc-gradient-start);
}

.lc-login__footer-aws {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--lc-border);
    opacity: 0.7;
    transition: opacity var(--lc-transition);
}

.lc-login__footer-aws:hover {
    opacity: 1;
}

.lc-login__footer-aws-text {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.02px;
    color: var(--lc-text-secondary);
    text-align: center;
    margin-bottom: 0;
}

/* —— Responsive —— */
@media (max-width: 1024px) {
    .lc-login {
        grid-template-columns: 1fr;
    }

    .lc-login__hero {
        min-height: auto;
        min-height: 42vh;
        padding: 24px;
    }

    .lc-login__hero-content {
        justify-content: flex-start;
        padding-bottom: 0;
    }

    .lc-login__headline {
        font-size: 1.5rem;
    }

    .lc-login__features {
        display: none;
    }

    .lc-login__subcopy {
        margin-bottom: 0;
        font-size: 0.875rem;
    }

    .lc-login__hero-footer {
        padding-top: 16px;
    }

    .lc-login__panel {
        min-height: auto;
        padding: 32px 24px 40px;
    }
}

@media (max-width: 576px) {
    .lc-login__hero {
        min-height: 36vh;
    }

    .lc-login__brand-cloud {
        font-size: 2rem;
    }

    .lc-login__brand-text {
        font-size: 1.25rem;
    }

    .lc-login__panel-inner {
        max-width: 100%;
    }

    .lc-login__logo-wrap img {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 1440px) {
    .lc-login__panel-inner {
        max-width: 440px;
    }

    .lc-login__hero-content {
        max-width: 620px;
    }

    .lc-login__subcopy {
        max-width: 620px;
    }
}

/* —— Lead / contacto desde login — System Aligned (SOLUCION_MODAL_STACKING.md) —— */
.lc-login__lead {
    margin-top: 1.75rem;
    text-align: center;
}

.lc-login__lead-sep {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lc-border), transparent);
    margin-bottom: 1.25rem;
}

.lc-login__lead-text {
    margin: 0 0 0.625rem;
    font-size: 0.875rem;
    color: var(--lc-text-secondary);
}

.lc-login__lead-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--lc-gradient-start);
    cursor: pointer;
    transition: color var(--lc-transition), transform var(--lc-transition);
}

.lc-login__lead-btn:hover {
    color: var(--lc-gradient-end);
    transform: translateY(-1px);
}

.lc-login__lead-btn span {
    transition: transform var(--lc-transition);
}

.lc-login__lead-btn:hover span {
    transform: translateX(2px);
}

body.lc-contact-modal-open {
    overflow: hidden !important;
}

/* Capa 1: overlay full-screen (pseudo-elemento, no afecta opacidad de la tarjeta) */
#lcContactModal.lc-contact-modal {
    display: none;
    position: fixed !important;
    inset: 0 !important;
    z-index: 1055 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    outline: 0 !important;
    background: transparent !important;
    border: none !important;
    /* Mismas variables que .lc-login (el modal vive en body, fuera de .lc-login) */
    --lc-gradient-start: #667eea;
    --lc-gradient-mid: #5b6fd6;
    --lc-gradient-end: #764ba2;
    --lc-radius-md: 14px;
    --lc-transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

#lcContactModal.lc-contact-modal.is-open {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#lcContactModal.lc-contact-modal.is-open::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
}

/* Capa 2: tarjeta opaca centrada */
#lcContactModal .lc-contact-modal__dialog {
    position: relative !important;
    z-index: 1 !important;
    width: 90% !important;
    max-width: 480px !important;
    height: auto !important;
    max-height: 90vh !important;
    margin: 0 !important;
    padding: 32px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    pointer-events: auto !important;
    background-color: #ffffff !important;
    background: #ffffff !important;
    opacity: 1 !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
    animation: lc-modal-in 0.25s ease-out;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

#lcContactModal .lc-contact-modal__dialog::-webkit-scrollbar {
    width: 6px;
}

#lcContactModal .lc-contact-modal__dialog::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

@keyframes lc-modal-in {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lc-contact-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--lc-transition), color var(--lc-transition);
}

.lc-contact-modal__close:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--lc-gradient-start);
}

#lcContactModal .lc-contact-modal__title {
    margin: 0 0 0.375rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: #0f172a !important;
    letter-spacing: -0.02em;
}

#lcContactModal .lc-contact-modal__subtitle {
    margin: 0 0 1.5rem;
    font-size: 0.875rem;
    color: #64748b !important;
    line-height: 1.5;
}

#lcContactModal .lc-login__label {
    color: #0f172a;
}

#lcContactModal .lc-login__input {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: none;
}

#lcContactModal .lc-login__input:hover {
    border-color: #cbd5e1 !important;
}

#lcContactModal .lc-login__input:focus {
    outline: none;
    border-color: var(--lc-gradient-start) !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.18) !important;
}

.lc-contact-modal__textarea {
    min-height: 96px;
    resize: vertical;
}

.lc-contact-modal__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.lc-contact-modal__btn-secondary {
    flex: 0 0 auto;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #64748b;
    background: transparent;
    border: none;
    border-radius: var(--lc-radius-md);
    cursor: pointer;
    transition: color var(--lc-transition);
}

.lc-contact-modal__btn-secondary:hover {
    color: var(--lc-gradient-start);
}

.lc-contact-modal__btn-submit {
    flex: 1;
    width: auto !important;
    margin-top: 0 !important;
    min-height: 52px;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--lc-gradient-start) 0%,
        var(--lc-gradient-mid) 45%,
        var(--lc-gradient-end) 100%
    ) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35) !important;
}

#lcContactModal .lc-login__submit.lc-contact-modal__btn-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4) !important;
}

#lcContactModal .lc-login__submit.lc-contact-modal__btn-submit:active:not(:disabled) {
    transform: translateY(0);
}

#lcContactModal .lc-login__submit.lc-contact-modal__btn-submit:disabled {
    cursor: not-allowed;
    opacity: 0.75;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
}

#lcContactModal .lc-login__submit-text {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    font-weight: 600;
    font-size: 0.9375rem;
}

.lc-contact-modal__alert {
    padding: 0.75rem 1rem;
    border-radius: var(--lc-radius-sm);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.45;
}

.lc-contact-modal__alert[hidden] {
    display: none !important;
}

.lc-contact-modal__alert--error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.lc-contact-modal__alert--success {
    background: #ecfdf5;
    color: #047857;
    border: 1px solid #a7f3d0;
}

.lc-contact-modal__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* === LIA Badge === */
.lc-login__lia-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 0;
    margin-bottom: 1rem;
    background: var(--lc-glass);
    border: 1px solid rgba(96, 165, 250, 0.22);
    border-radius: var(--lc-radius-md);
    padding: 10px 18px;
    text-decoration: none;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.06);
    transition: background var(--lc-transition), border-color var(--lc-transition), transform var(--lc-transition);
    cursor: pointer;
}
.lc-login__lia-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(96, 165, 250, 0.35);
    transform: translateX(4px);
}
.lc-login__lia-icon {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: center;
}
.lc-login__lia-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.lc-login__lia-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    row-gap: 2px;
}
.lc-login__lia-foot {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}
.lc-login__lia-tag {
    display: inline-block;
    background: rgba(96, 165, 250, 0.2);
    color: #93c5fd;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
    margin: 0;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    line-height: 1.2;
}
.lc-login__lia-title {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.25;
    flex: 1;
    min-width: 0;
}
.lc-login__lia-desc {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.8125rem;
    line-height: 1.35;
    margin: 0;
    flex: 1;
    min-width: 0;
}
.lc-login__lia-link {
    color: #60a5fa;
    font-size: 0.8125rem;
    font-weight: 500;
    margin: 0;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 1.35;
}

/* === Footer logos row === */
.lc-login__footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.lc-login__footer-logo-div {
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.15);
    display: inline-block;
    align-self: center;
    flex-shrink: 0;
}
.provider-logo-aws {
    height: 31px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.lc-login__footer-meta-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
.lc-login__footer-wa-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}
