.page-wrapper {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 2.75rem 1.5rem;
    gap: 1.25rem;
    max-width: 820px;
    margin: 0 auto;
    width: 100%;
}

/* ═══════════════════
   LEFT COLUMN
═══════════════════ */
.col-left {
    flex: 0 0 390px;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-panel);
    overflow: hidden;
    border: 1px solid rgba(0,50,140,.08);
}

.col-left-header {
    background: var(--navy);
    padding: 1.75rem 2.25rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.col-left-header::after {
    content: '';
    position: absolute;
    right: -50px; top: -50px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    pointer-events: none;
}

.login-logo {
    display: block;
    text-decoration: none;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.login-logo img { width: 160px; height: auto; display: block; }

.col-left-header h1 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 26px;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}
.col-left-header .subtitle {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    position: relative;
    z-index: 1;
}
.col-left-header .subtitle a { color: var(--orange); text-decoration: none; font-weight: 500; }
.col-left-header .subtitle a:hover { text-decoration: underline; }

.col-left-body {
    background: var(--white);
    padding: 1.75rem 2.25rem 1.5rem;
    flex: 1;
}

.form-group { margin-bottom: 13px; }

.login-error {
    display: none;
    background: #FEF2F2;
    border: 1.5px solid #FECACA;
    border-radius: var(--radius-sm);
    padding: 10px 13px;
    margin-bottom: 13px;
    font-size: 13px;
    font-weight: 500;
    color: #991B1B;
}

.form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    margin-top: 4px;
}
.form-row label { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--gray-400); cursor: pointer; }
.form-row input[type="checkbox"] { width: 14px; height: 14px; accent-color: var(--blue); }
.form-row a { font-size: 13px; color: var(--blue); text-decoration: none; font-weight: 500; }

.section-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--gray-300);
    margin-bottom: 5px;
}

.app-btns { display: flex; gap: 6px; }
.app-btn {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 6px; background: var(--white); border: 1.5px solid var(--gray-200);
    color: var(--gray-600); border-radius: var(--radius-sm); padding: 6px 8px;
    text-decoration: none; transition: border-color .15s, background .15s;
}
.app-btn:hover { border-color: var(--blue); background: var(--blue-pale); }
.app-btn svg { width: 13px; height: 13px; fill: var(--gray-400); flex-shrink: 0; }
.app-btn:hover svg { fill: var(--blue); }
.app-btn-text { display: flex; flex-direction: column; }
.app-btn-text small { font-size: 8px; color: var(--gray-400); letter-spacing: .3px; }
.app-btn-text span { font-size: 11px; font-weight: 600; line-height: 1.2; color: var(--gray-600); }

/* ═══════════════════
   RIGHT COLUMN
═══════════════════ */
.col-right {
    flex: 0 0 330px;
    display: flex;
    flex-direction: column;
    gap: .875rem;
}

/* Help Center — grows to fill right column */
.hc-hero {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-card);
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hc-hero-header {
    background: var(--navy);
    padding: 1.75rem 1.75rem 1.5rem;
    flex-shrink: 0;
}
.hc-hero-header h2 {
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 6px;
}
.hc-hero-header p {
    font-size: 13px;
    color: rgba(255,255,255,.65);
    line-height: 1.55;
}

.hc-hero-footer {
    padding: 1rem 1.75rem 1.5rem;
    flex-shrink: 0;
    margin-top: auto;
}
.hc-visit-btn {
    display: block;
    width: 100%;
    padding: 11px 16px;
    background: var(--blue);
    color: var(--white);
    font-family: 'Inter', Arial, sans-serif;
    font-size: 13px; font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-align: center;
    transition: background .15s;
}
.hc-visit-btn:hover { background: var(--navy); }

/* Support card — natural height */
.support-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-card);
    padding: .9rem 1.25rem;
    flex-shrink: 0;
}
.support-body { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.support-info { font-size: 12.5px; color: var(--gray-500); line-height: 1.6; }
.support-info strong { color: var(--gray-600); font-weight: 600; display: block; }
.support-info a { color: var(--blue); text-decoration: none; }

/* ── FOOTER ── */
footer {
    padding: 12px 0 1.5rem;
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 1rem;
    max-width: 820px; margin: 0 auto; width: 100%;
}

@media (max-width: 760px) {
    .page-wrapper { flex-direction: column; align-items: stretch; padding: 1.5rem 1rem; }
    .col-left, .col-right { flex: none; width: 100%; }
}
