/**
 * Login page — login.php (premium)
 */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --login-primary: #ff6a00;
    --login-primary-soft: rgba(255, 106, 0, 0.14);
    --login-primary-glow: rgba(255, 106, 0, 0.35);
    --login-dark: #0f172a;
    --login-text: #334155;
    --login-muted: #64748b;
    --login-border: #e2e8f0;
    --login-surface: #ffffff;
    --login-radius: 24px;
    --login-shadow: 0 32px 100px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.06);
    --login-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

body.login-page img.login-brand-logo,
body.login-page img.login-hero-brand-logo,
body.login-page img.login-card-logo {
    max-width: none;
    display: block;
}

body.login-page {
    margin: 0;
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--login-text);
    background: #070b14;
    position: relative;
    overflow-x: hidden;
}

body.login-page::before,
body.login-page::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

body.login-page::before {
    width: min(520px, 90vw);
    height: min(520px, 90vw);
    top: -120px;
    left: -80px;
    background: rgba(255, 106, 0, 0.22);
}

body.login-page::after {
    width: min(420px, 80vw);
    height: min(420px, 80vw);
    bottom: -100px;
    right: -60px;
    background: rgba(99, 102, 241, 0.14);
}

.login-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem 2rem;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(165deg, #0f172a 0%, #111827 48%, #0b1220 100%);
    background-size: 56px 56px, 56px 56px, auto;
    animation: loginShellIn 0.7s var(--login-ease) both;
}

@keyframes loginShellIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* —— Top bar —— */
.login-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1060px;
    width: 100%;
    margin: 0 auto 1.35rem;
    flex-wrap: wrap;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.login-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
    min-width: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.login-brand:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.login-brand-logo-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    padding: 5px;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.12);
}

.login-brand-logo {
    width: auto;
    height: 34px;
    max-width: 100%;
    object-fit: contain;
}

.login-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.login-brand-name {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.login-brand-tagline {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.login-topbar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.login-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.48rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: 0.22s ease;
}

.login-nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 106, 0, 0.45);
    color: #fff;
    transform: translateY(-1px);
}

.login-nav-link--accent {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.28), rgba(255, 106, 0, 0.12));
    border-color: rgba(255, 106, 0, 0.35);
}

/* —— Unified split panel —— */
.login-stage {
    flex: 1;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    max-width: 1060px;
    width: 100%;
    margin: 0 auto;
    align-self: center;
    border-radius: var(--login-radius);
    overflow: hidden;
    box-shadow: var(--login-shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: min(640px, calc(100vh - 140px));
    animation: loginStageIn 0.75s var(--login-ease) 0.08s both;
}

@keyframes loginStageIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-hero {
    position: relative;
    padding: clamp(1.75rem, 3.5vw, 2.75rem);
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.02) 55%, rgba(255, 106, 0, 0.06) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.login-hero-brand {
    margin-bottom: 1.35rem;
}

.login-hero-brand-logo {
    width: auto;
    height: clamp(52px, 8vw, 72px);
    max-width: min(220px, 70%);
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.login-hero-glow {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.login-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 90%);
    pointer-events: none;
}

.login-hero-inner {
    position: relative;
    z-index: 1;
}

.login-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 106, 0, 0.18);
    border: 1px solid rgba(255, 106, 0, 0.35);
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 20px rgba(255, 106, 0, 0.15);
}

.login-hero h1 {
    color: #fff;
    font-size: clamp(1.55rem, 2.6vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin: 0 0 0.9rem;
    font-weight: 800;
    text-wrap: balance;
}

.login-hero-lead {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
    font-size: 0.92rem;
    margin: 0 0 1.4rem;
    max-width: 420px;
}

.login-role-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.login-role-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    backdrop-filter: blur(4px);
    transition: 0.2s ease;
}

.login-role-pill:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 106, 0, 0.35);
}

.login-role-pill i {
    color: var(--login-primary);
    font-size: 0.68rem;
}

.login-hero-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.login-hero-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    line-height: 1.45;
    padding: 0.45rem 0;
}

.login-hero-features li i {
    color: var(--login-primary);
    margin-top: 0.12rem;
    width: 16px;
    text-align: center;
    filter: drop-shadow(0 0 6px rgba(255, 106, 0, 0.4));
}

/* —— Form panel —— */
.login-card {
    background: var(--login-surface);
    padding: clamp(1.65rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--login-primary), #111 60%, transparent);
}

.login-card-head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f1f5f9;
}

.login-card-logo-wrap {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(145deg, #fff 0%, #fff9f4 100%);
    border: 1px solid rgba(255, 106, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow:
        0 8px 24px rgba(255, 106, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.login-card-logo {
    width: auto;
    height: 40px;
    max-width: 100%;
    object-fit: contain;
}

.login-card-head-copy {
    min-width: 0;
    flex: 1;
}

.login-card-head h2 {
    font-size: 1.38rem;
    font-weight: 800;
    color: var(--login-dark);
    letter-spacing: -0.03em;
    margin: 0 0 0.35rem;
}

.login-card-head p {
    margin: 0;
    color: var(--login-muted);
    font-size: 0.86rem;
    line-height: 1.55;
}

.login-card-head p strong {
    color: var(--login-dark);
    font-weight: 700;
}

.login-form-group {
    margin-bottom: 1.05rem;
}

.login-form-group label {
    display: block;
    margin-bottom: 0.42rem;
    color: var(--login-dark);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.01em;
}

.login-input-wrap {
    position: relative;
    display: block;
}

.login-input-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.88rem;
    pointer-events: none;
    z-index: 1;
    transition: color 0.2s;
}

.login-input-wrap:focus-within .login-input-icon {
    color: var(--login-primary);
}

.login-input-wrap input {
    width: 100%;
    min-height: 48px;
    padding: 0.82rem 0.9rem 0.82rem 2.55rem;
    border: 1.5px solid var(--login-border);
    border-radius: 14px;
    font-size: 0.94rem;
    font-family: inherit;
    color: var(--login-dark);
    background: #f8fafc;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
}

.login-input-wrap input::placeholder {
    color: #94a3b8;
}

.login-input-wrap input:focus {
    outline: none;
    border-color: var(--login-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.14), 0 4px 16px rgba(255, 106, 0, 0.08);
    transform: translateY(-1px);
}

.login-input-wrap input.login-input--error {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.login-input-wrap--password input {
    padding-right: 2.85rem;
}

.login-input-wrap .password-field-toggle {
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--login-muted);
    cursor: pointer;
    padding: 0.5rem 0.65rem;
    border-radius: 10px;
    line-height: 1;
    z-index: 2;
    transition: 0.2s ease;
}

.login-input-wrap .password-field-toggle:hover {
    color: var(--login-primary);
    background: var(--login-primary-soft);
}

.login-remember-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0;
    cursor: pointer;
    font-size: 0.84rem;
    color: var(--login-text);
    user-select: none;
}

.login-forgot-link {
    border: none;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--login-primary);
    cursor: pointer;
    text-decoration: none;
}

.login-forgot-link:hover {
    text-decoration: underline;
}

.login-remember input {
    width: 18px;
    height: 18px;
    accent-color: var(--login-primary);
    cursor: pointer;
}

.login-remember:hover {
    color: var(--login-primary);
}

.login-submit {
    width: 100%;
    min-height: 50px;
    padding: 0.9rem 1.15rem;
    border: none;
    border-radius: 14px;
    font-family: inherit;
    font-size: 0.96rem;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    background: linear-gradient(135deg, #ff7a1a 0%, var(--login-primary) 35%, #1a1a1a 100%);
    box-shadow:
        0 10px 28px rgba(255, 106, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: transform 0.15s, box-shadow 0.2s;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
}

.login-submit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 36px rgba(255, 106, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.login-submit:active {
    transform: translateY(0) scale(0.99);
}

.login-submit.login-submit--loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.login-submit.login-submit--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: login-spin 0.8s linear infinite;
}

@keyframes login-spin {
    to { transform: rotate(360deg); }
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin: 1.4rem 0 1.1rem;
    color: var(--login-muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--login-border), transparent);
}

.login-divider span {
    flex-shrink: 0;
    padding: 0 0.15rem;
}

.login-public-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
}

.login-public-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.78rem 0.9rem;
    border-radius: 14px;
    border: 1px solid var(--login-border);
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    text-decoration: none;
    color: var(--login-text);
    font-size: 0.81rem;
    font-weight: 700;
    transition: 0.22s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.login-public-link:hover {
    border-color: rgba(255, 106, 0, 0.35);
    background: #fff9f4;
    color: var(--login-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.1);
}

.login-public-link i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.login-public-link--signup i { background: linear-gradient(135deg, var(--login-primary), #111); }
.login-public-link--quote i { background: linear-gradient(135deg, #10b981, #047857); }
.login-public-link--track i { background: linear-gradient(135deg, #6366f1, #4338ca); }
.login-public-link--contact i { background: linear-gradient(135deg, #0ea5e9, #0369a1); }

.login-footer-note {
    text-align: center;
    margin-top: 1.25rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafc, #fff);
    border: 1px dashed #cbd5e1;
    font-size: 0.84rem;
    color: var(--login-muted);
    line-height: 1.5;
}

.login-callback-link {
    color: var(--login-primary);
    font-weight: 800;
    text-decoration: none;
    margin: 0 0.2rem;
}

.login-callback-link:hover {
    text-decoration: underline;
}

.login-footer-note-sub {
    display: block;
    font-size: 0.78rem;
    margin-top: 0.15rem;
    color: #94a3b8;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* —— Responsive —— */
@media (max-width: 900px) {
    .login-stage {
        grid-template-columns: 1fr;
        max-width: 460px;
        min-height: auto;
        border-radius: 20px;
    }

    .login-card {
        order: -1;
    }

    .login-hero {
        padding: 1.35rem 1.5rem 1.5rem;
        text-align: center;
    }

    .login-hero-brand {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .login-hero-brand-logo {
        height: 48px;
        max-width: 180px;
    }

    .login-hero h1 {
        font-size: 1.28rem;
    }

    .login-hero-lead {
        font-size: 0.86rem;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .login-hero-features {
        display: none;
    }

    .login-role-pills {
        justify-content: center;
        margin-bottom: 0;
    }

    .login-card-logo-wrap {
        width: 52px;
        height: 52px;
    }

    .login-card-logo {
        height: 36px;
    }
}

.login-stage--single {
    max-width: 520px;
    margin: 0 auto;
}

.login-card--narrow {
    width: 100%;
}

.login-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.75rem 0.9rem;
    border-radius: 12px;
    font-size: 0.86rem;
    margin-bottom: 1rem;
}

.login-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.login-forgot-foot {
    margin: 1rem 0 0;
    text-align: center;
}

body.login-modal-open {
    overflow: hidden;
}

.login-forgot-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(4px);
}

.login-forgot-modal[hidden] {
    display: none !important;
}

.login-forgot-dialog {
    width: min(440px, 100%);
    background: var(--login-surface);
    border-radius: 20px;
    padding: 1.35rem 1.25rem 1.25rem;
    box-shadow: var(--login-shadow);
    animation: loginFadeIn 0.25s ease;
}

@keyframes loginFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-forgot-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.login-forgot-head h3 {
    margin: 0;
    font-size: 1.15rem;
    color: var(--login-dark);
}

.login-forgot-close {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--login-muted);
    cursor: pointer;
    padding: 0.15rem 0.35rem;
    border-radius: 8px;
}

.login-forgot-close:hover {
    color: var(--login-dark);
    background: #f1f5f9;
}

.login-forgot-lead {
    margin: 0 0 1rem;
    font-size: 0.86rem;
    color: var(--login-muted);
    line-height: 1.5;
}

.login-forgot-channels {
    border: none;
    margin: 0 0 0.65rem;
    padding: 0;
}

.login-forgot-channels legend {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--login-text);
    margin-bottom: 0.45rem;
}

.login-forgot-channel {
    display: inline-flex;
    align-items: center;
    margin-right: 0.65rem;
    margin-bottom: 0.35rem;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 600;
}

.login-forgot-channel input {
    margin-right: 0.35rem;
    accent-color: var(--login-primary);
}

.login-forgot-channel--wa span {
    color: #128c7e;
}

.login-forgot-note {
    margin: 0 0 0.85rem;
    font-size: 0.76rem;
    color: var(--login-muted);
    line-height: 1.45;
}

.login-forgot-status {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.login-forgot-status--success { color: #15803d; }
.login-forgot-status--error { color: #b91c1c; }
.login-forgot-status--pending { color: #b45309; }

@media (max-width: 480px) {
    .login-shell {
        padding: 0.75rem 0.85rem 1.5rem;
    }

    .login-topbar {
        border-radius: 16px;
        padding: 0.55rem 0.65rem;
        margin-bottom: 1rem;
    }

    .login-brand-logo-wrap {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .login-brand-logo {
        height: 28px;
    }

    .login-brand-tagline {
        display: none;
    }

    .login-brand-name {
        font-size: 0.85rem;
    }

    .login-topbar-nav {
        width: 100%;
    }

    .login-nav-link {
        flex: 1 1 calc(50% - 0.25rem);
        justify-content: center;
        font-size: 0.74rem;
        padding: 0.42rem 0.5rem;
    }

    .login-stage {
        border-radius: 18px;
    }

    .login-card {
        padding: 1.35rem 1.15rem;
    }

    .login-card-head {
        gap: 0.85rem;
        padding-bottom: 1rem;
    }

    .login-card-logo-wrap {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .login-public-links {
        grid-template-columns: 1fr;
    }

    .login-role-pills {
        display: none;
    }
}

@media (min-width: 901px) {
    .login-hero {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
    }
}
