/* /Components/Layout/AppLayout.razor.rz.scp.css */
/* === Main Layout Structure === */
.page[b-coqwbbx7um] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-coqwbbx7um] {
    flex: 1;
    background-color: #F7F8FA;
}

/* === Sidebar === */
.sidebar[b-coqwbbx7um] {
    background: linear-gradient(180deg, #0B1638 0%, #132868 100%) !important;
    box-shadow: 3px 0 12px rgba(11,22,56, 0.25);
    z-index: 1000;
}

/* === Top Header === */
.top-header[b-coqwbbx7um] {
    background: linear-gradient(135deg, #132868 0%, #3D5AA8 55%, #8C1F3E 100%);
    box-shadow: 0 4px 16px rgba(19,40,104, 0.3);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-main[b-coqwbbx7um] {
    padding: 1rem 2rem;
    min-height: 80px;
}

/* === Logo and Branding === */
.brand-section[b-coqwbbx7um] { color: white; }
.logo-container[b-coqwbbx7um] { position: relative; }

.app-logo[b-coqwbbx7um] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.app-logo:hover[b-coqwbbx7um] {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transform: translateY(-2px);
}
.logo-image[b-coqwbbx7um] { width: 36px; height: auto; display: block; transition: transform 0.3s ease; }
.app-logo:hover .logo-image[b-coqwbbx7um] { transform: scale(1.06); }

.brand-title[b-coqwbbx7um] { font-size: 26px; font-weight: 800; color: white; letter-spacing: -0.4px; margin: 0; }
.brand-tagline[b-coqwbbx7um] { font-size: 13px; color: rgba(255, 255, 255, 0.85); font-style: italic; margin: 0; font-weight: 300; }

/* === User Section (top header) === */
.user-section[b-coqwbbx7um] { color: white; }
.user-info[b-coqwbbx7um] { text-align: right; }
.user-greeting[b-coqwbbx7um] { font-size: 16px; margin-bottom: 4px; }
.welcome-text[b-coqwbbx7um] { color: rgba(255, 255, 255, 0.9); font-weight: 300; }
.username[b-coqwbbx7um] { color: white; font-weight: 700; font-size: 17px; }

.logout-btn[b-coqwbbx7um] {
    background: linear-gradient(180deg, #C97A8D 0%, #8C1F3E 45%, #6B1C2F 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 4px 12px rgba(140,31,62, 0.35);
    position: relative;
    overflow: hidden;
}
.logout-btn:hover[b-coqwbbx7um] {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 6px 16px rgba(140,31,62, 0.45);
    color: white;
}
.logout-btn:active[b-coqwbbx7um] { transform: translateY(0); }

/* === Sub Header === */
.header-sub[b-coqwbbx7um] {
    background: rgba(0, 0, 0, 0.14);
    padding: 7px 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}
.breadcrumb-section[b-coqwbbx7um] { color: rgba(255, 255, 255, 0.9); font-size: 13px; font-weight: 500; }
.system-status[b-coqwbbx7um] { display: flex; align-items: center; gap: 8px; color: rgba(255, 255, 255, 0.8); font-size: 12px; }
.status-indicator[b-coqwbbx7um] {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ADE80;
    animation: jv-app-pulse-b-coqwbbx7um 2s infinite;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.7);
}

@keyframes jv-app-pulse-b-coqwbbx7um {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* === Content Area === */
.content[b-coqwbbx7um] {
    background: transparent;
    min-height: calc(100vh - 140px);
    padding: 2rem !important;
}

/* ============================================================
   Sidebar header (brand + user welcome) — mirrors nav-header
   ============================================================ */
.nav-header[b-coqwbbx7um] {
    background: linear-gradient(135deg, #132868 0%, #3D5AA8 100%);
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.nav-brand-section[b-coqwbbx7um] { display: flex; align-items: center; margin-bottom: 0.75rem; position: relative; z-index: 2; }
.nav-logo-container[b-coqwbbx7um] { margin-right: 12px; }

.nav-app-logo[b-coqwbbx7um] {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
}
.nav-logo-image[b-coqwbbx7um] { width: 30px; height: auto; display: block; }

.nav-brand-info[b-coqwbbx7um] { flex: 1; }
.nav-brand-title[b-coqwbbx7um] { font-size: 20px; font-weight: 800; color: white; margin: 0; letter-spacing: -0.3px; }
.nav-brand-subtitle[b-coqwbbx7um] { color: rgba(255, 255, 255, 0.85); font-size: 11px; font-weight: 400; margin: 0; }

.nav-user-welcome[b-coqwbbx7um] { position: relative; z-index: 2; }
.nav-user-info[b-coqwbbx7um] { display: flex; align-items: center; color: white; font-size: 14px; }
.nav-username[b-coqwbbx7um] { font-weight: 600; }

/* === Navigation scrollable body === */
.nav-scrollable[b-coqwbbx7um] {
    display: block;
    height: calc(100vh - 160px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    background: linear-gradient(180deg, #132868 0%, #0B1638 60%, #0B1638 100%);
}
.nav-scrollable[b-coqwbbx7um]::-webkit-scrollbar { width: 4px; }
.nav-scrollable[b-coqwbbx7um]::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.3); border-radius: 2px; }

/* === Navigation Menu Sections === */
.nav-menu-section[b-coqwbbx7um] { padding: 0.75rem 0; }

.nav-section-title[b-coqwbbx7um] {
    display: flex; align-items: center;
    padding: 0.4rem 1rem; margin-bottom: 0.25rem;
    font-size: 11px; font-weight: 700;
    color: rgba(221, 214, 254, 0.8);
    text-transform: uppercase; letter-spacing: 0.7px;
}
.nav-section-title.admin-section[b-coqwbbx7um] { color: rgba(201, 122, 141, 0.9); }

/* === Nav Links === */
.nav-item[b-coqwbbx7um] { font-size: 0.9rem; margin-bottom: 2px; position: relative; }

.nav-item[b-coqwbbx7um]  .nav-link {
    color: rgba(255, 255, 255, 0.88);
    background: none; border: none; border-radius: 8px;
    height: auto; padding: 10px 14px; margin: 0 8px;
    display: flex; align-items: center; line-height: 1.4;
    width: calc(100% - 16px);
    text-decoration: none; position: relative; overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-content[b-coqwbbx7um] { display: flex; align-items: center; flex: 1; position: relative; z-index: 2; }
.nav-link-icon[b-coqwbbx7um] { font-size: 16px; margin-right: 12px; transition: all 0.25s ease; opacity: 0.9; }
.nav-link-text[b-coqwbbx7um] { font-weight: 500; font-size: 14px; }

.nav-link-indicator[b-coqwbbx7um] {
    position: absolute; left: 0; top: 50%;
    width: 3px; height: 0;
    background: #C97A8D;
    border-radius: 2px;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}

.nav-item[b-coqwbbx7um]  .nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    transform: translateX(4px);
}
.nav-item[b-coqwbbx7um]  .nav-link:hover .nav-link-icon { opacity: 1; transform: scale(1.1); }
.nav-item[b-coqwbbx7um]  .nav-link:hover .nav-link-indicator { height: 20px; background: rgba(255, 255, 255, 0.8); }

.nav-item[b-coqwbbx7um]  a.active {
    background: rgba(255, 255, 255, 0.16);
    color: white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transform: translateX(4px);
    border-left: 3px solid #C97A8D;
}
.nav-item[b-coqwbbx7um]  a.active .nav-link-indicator { height: 24px; background: #C97A8D; box-shadow: 0 0 8px rgba(201, 122, 141, 0.6); }
.nav-item[b-coqwbbx7um]  a.active .nav-link-icon { opacity: 1; transform: scale(1.1); color: #C97A8D; }

/* === Administration section (separated) === */
.nav-admin-section[b-coqwbbx7um] { margin-top: auto; padding-top: 0.5rem; }

.nav-section-divider[b-coqwbbx7um] {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
    margin: 0.75rem 1.5rem;
}

.nav-item[b-coqwbbx7um]  .admin-link {
    background: rgba(201, 122, 141, 0.08);
    border: 1px solid rgba(201, 122, 141, 0.2);
}
.nav-item[b-coqwbbx7um]  .admin-link:hover {
    background: rgba(201, 122, 141, 0.18);
    border-color: rgba(201, 122, 141, 0.35);
}
.nav-item[b-coqwbbx7um]  .admin-link.active {
    background: rgba(201, 122, 141, 0.25);
    border-color: rgba(201, 122, 141, 0.5);
    border-left: 3px solid #C97A8D;
}
.admin-indicator[b-coqwbbx7um] { background: #C97A8D !important; }

/* === System Status === */
.nav-system-status[b-coqwbbx7um] { padding: 0.75rem 1rem; margin-top: 0.5rem; }
.system-status-item[b-coqwbbx7um] { display: flex; align-items: center; gap: 8px; }
.status-dot[b-coqwbbx7um] {
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ADE80;
    animation: jv-app-pulse-b-coqwbbx7um 2s infinite;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.7);
}
.status-text[b-coqwbbx7um] { color: rgba(221, 214, 254, 0.75); font-size: 11px; font-weight: 500; }

/* ============================================================
   Mobile drawer
   ============================================================ */
.ml-overlay[b-coqwbbx7um] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,22,56, 0.55);
    z-index: 1050;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
}

.ml-nav-open .ml-overlay[b-coqwbbx7um] {
    pointer-events: auto;
}

.ml-mobile-bar[b-coqwbbx7um] { display: none; }

.ml-hamburger[b-coqwbbx7um] {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 1.25rem;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: background 0.2s ease;
    padding: 0;
    position: relative;
    z-index: 1101;
    touch-action: manipulation;
}
.ml-hamburger:hover[b-coqwbbx7um], .ml-hamburger:focus[b-coqwbbx7um] { background: rgba(255, 255, 255, 0.28); outline: none; }

.ml-mobile-brand[b-coqwbbx7um] { flex: 1; display: flex; align-items: center; gap: 0.5rem; overflow: hidden; }
.ml-mobile-logo[b-coqwbbx7um] { width: 32px; height: auto; flex-shrink: 0; }
.ml-mobile-app[b-coqwbbx7um] { color: white; font-weight: 700; font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ml-mobile-logout[b-coqwbbx7um] {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    transition: background 0.2s ease;
    padding: 0;
}
.ml-mobile-logout:hover[b-coqwbbx7um], .ml-mobile-logout:focus[b-coqwbbx7um] { background: rgba(255, 255, 255, 0.28); outline: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 768px) {
    .top-header[b-coqwbbx7um] { display: none; }

    .ml-mobile-bar[b-coqwbbx7um] {
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #132868 0%, #3D5AA8 100%);
        padding: 0.6rem 0.875rem;
        position: sticky;
        top: 0;
        z-index: 1001;
        box-shadow: 0 2px 8px rgba(19,40,104, 0.35);
        gap: 0.75rem;
    }

    .sidebar[b-coqwbbx7um] {
        position: fixed;
        top: 0; left: 0;
        width: 260px;
        height: 100vh;
        height: 100dvh;
        z-index: 1100;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: none;
    }
    .ml-nav-open .sidebar[b-coqwbbx7um] { transform: translateX(0); box-shadow: 4px 0 20px rgba(0, 0, 0, 0.35); }
    .ml-nav-open .ml-overlay[b-coqwbbx7um] { display: block; }

    .content[b-coqwbbx7um] { padding: 1rem !important; }
}

@media (max-width: 576px) {
    .content[b-coqwbbx7um] { padding: 0.75rem !important; }
}

@media (min-width: 769px) {
    .page[b-coqwbbx7um] { flex-direction: row; }
    .sidebar[b-coqwbbx7um] { width: 260px; height: 100vh; position: sticky; top: 0; flex-shrink: 0; }
    .ml-mobile-bar[b-coqwbbx7um] { display: none !important; }
    .ml-overlay[b-coqwbbx7um] { display: none !important; }
    .header-main[b-coqwbbx7um] { padding: 1rem 2rem; }
    .content[b-coqwbbx7um] { padding: 2rem !important; }
    .nav-user-welcome[b-coqwbbx7um] { display: none; }
}

#blazor-error-ui[b-coqwbbx7um] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}
#blazor-error-ui .dismiss[b-coqwbbx7um] { cursor: pointer; position: absolute; right: 0.75rem; top: 0.5rem; }
/* /Components/Layout/BackOfficeLayout.razor.rz.scp.css */
.bo-shell[b-ar1qzun2ln] {
    min-height: 100vh;
    display: flex;
    background: #f5f0eb;
}

/* ── Sidebar ── */
.bo-sidebar[b-ar1qzun2ln] {
    width: 240px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #2d1206 0%, #3b1a08 40%, #4a2210 100%);
    display: flex;
    flex-direction: column;
}

.bo-sidebar-header[b-ar1qzun2ln] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bo-logo[b-ar1qzun2ln] {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.bo-logo img[b-ar1qzun2ln] {
    width: 30px;
    height: auto;
}

.bo-brand-text h4[b-ar1qzun2ln] {
    margin: 0;
    font-weight: 800;
    font-size: 19px;
    color: #fff;
}

.bo-brand-text span[b-ar1qzun2ln] {
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #f5c98a;
}

.bo-nav[b-ar1qzun2ln] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 12px;
}

.bo-nav-section-title[b-ar1qzun2ln] {
    margin: 16px 14px 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

/* NavLink renders its own <a> — that element belongs to the NavLink component, not to this
   file's markup, so it never receives this component's css-isolation scope attribute and a
   plain ".bo-nav-link { ... }" rule would silently never match it (the page would just fall
   back to the browser/global default link style). ::deep drops the scope requirement on the
   part of the selector after it, the same fix AppLayout.razor.css uses for its own NavLinks. */
.bo-nav[b-ar1qzun2ln]  .bo-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
    border-left: 3px solid transparent;
}

.bo-nav[b-ar1qzun2ln]  .bo-nav-link i {
    font-size: 16px;
    width: 18px;
    text-align: center;
}

.bo-nav[b-ar1qzun2ln]  .bo-nav-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.bo-nav[b-ar1qzun2ln]  .bo-nav-link.active {
    background: rgba(245, 201, 138, 0.15);
    color: #f5c98a;
    border-left-color: #f5c98a;
}

/* ── Main column ── */
.bo-main[b-ar1qzun2ln] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.bo-topbar[b-ar1qzun2ln] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 14px 28px;
    background: #fff;
    border-bottom: 1px solid #e7e5e4;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.bo-user[b-ar1qzun2ln] {
    display: flex;
    align-items: center;
    gap: 18px;
}

.bo-username[b-ar1qzun2ln] {
    font-size: 14px;
    color: #5c2d0e;
}

.bo-logout-btn[b-ar1qzun2ln] {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e7e5e4;
    background: #fff;
    color: #5c2d0e;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.bo-logout-btn:hover[b-ar1qzun2ln] {
    background: #fdecea;
    color: #dc2626;
    border-color: #fecaca;
}

.bo-content[b-ar1qzun2ln] {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 28px 24px 60px;
}

@media (max-width: 860px) {
    .bo-shell[b-ar1qzun2ln] { flex-direction: column; }
    .bo-sidebar[b-ar1qzun2ln] { width: 100%; }
    .bo-nav[b-ar1qzun2ln] { flex-direction: row; overflow-x: auto; padding: 10px 12px; }
    .bo-nav-section-title[b-ar1qzun2ln] { display: none; }
    .bo-nav[b-ar1qzun2ln]  .bo-nav-link { border-left: none; border-bottom: 3px solid transparent; white-space: nowrap; }
    .bo-nav[b-ar1qzun2ln]  .bo-nav-link.active { border-left-color: transparent; border-bottom-color: #f5c98a; }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-jwgklpv2m9],
.components-reconnect-repeated-attempt-visible[b-jwgklpv2m9],
.components-reconnect-failed-visible[b-jwgklpv2m9],
.components-pause-visible[b-jwgklpv2m9],
.components-resume-failed-visible[b-jwgklpv2m9],
.components-rejoining-animation[b-jwgklpv2m9] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-jwgklpv2m9],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-jwgklpv2m9],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-jwgklpv2m9],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-jwgklpv2m9],
#components-reconnect-modal.components-reconnect-retrying[b-jwgklpv2m9],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-jwgklpv2m9],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-jwgklpv2m9],
#components-reconnect-modal.components-reconnect-failed[b-jwgklpv2m9],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-jwgklpv2m9] {
    display: block;
}


#components-reconnect-modal[b-jwgklpv2m9] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-jwgklpv2m9 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-jwgklpv2m9 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-jwgklpv2m9 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-jwgklpv2m9]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-jwgklpv2m9 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-jwgklpv2m9 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-jwgklpv2m9 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-jwgklpv2m9 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-jwgklpv2m9] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-jwgklpv2m9] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-jwgklpv2m9] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-jwgklpv2m9] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-jwgklpv2m9] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-jwgklpv2m9] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-jwgklpv2m9] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-jwgklpv2m9 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-jwgklpv2m9] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-jwgklpv2m9 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Account/BackOfficeLogin.razor.rz.scp.css */
*[b-l2768b0hgs], *[b-l2768b0hgs]::before, *[b-l2768b0hgs]::after { box-sizing: border-box; }

/* Espresso-brown + gold/amber palette — the same one BackOfficeLayout.razor.css and
   backoffice-theme.css use, referenced from ChurchTec's back office. Deliberately distinct
   from Login.razor.css's blue "Binyora" tenant-app theme: this page has its own identity so a
   back office sign-in never looks like — or shares markup with — the company sign-in page. */

/* ── PAGE ── */
.bo-login-page[b-l2768b0hgs] {
    min-height: 100vh;
    width: 100%;
    display: flex;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

/* ══════════════════════════════════════
   BRAND PANEL
══════════════════════════════════════ */
.bo-brand-panel[b-l2768b0hgs] {
    flex: 0 0 46%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(148deg, #2d1206 0%, #3b1a08 30%, #5c2d0e 65%, #9c4e1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 44px;
}

.bo-blob[b-l2768b0hgs] { position: absolute; border-radius: 50%; pointer-events: none; background: rgba(255,255,255,0.06); }
.bo-blob-1[b-l2768b0hgs] { width: 380px; height: 380px; top: -140px; right: -100px; }
.bo-blob-2[b-l2768b0hgs] { width: 240px; height: 240px; bottom: -80px; left: -70px; background: rgba(255,255,255,0.08); }
.bo-blob-3[b-l2768b0hgs] { width: 130px; height: 130px; top: 52%; right: 28px; }

.bo-brand-inner[b-l2768b0hgs] { position: relative; z-index: 2; text-align: center; max-width: 400px; width: 100%; }
.bo-brand-logo-block[b-l2768b0hgs] { margin-bottom: 28px; }

.bo-brand-logo-ring[b-l2768b0hgs] {
    width: 100px; height: 100px; border-radius: 50%;
    background: rgba(255,255,255,0.12);
    border: 2.5px solid rgba(255,255,255,0.28);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.18);
    font-size: 2.6rem; color: #f5c98a;
}

.bo-brand-name[b-l2768b0hgs] { font-family: 'Poppins', 'Segoe UI', sans-serif; font-size: 2.1rem; font-weight: 800; color: #fff; letter-spacing: -0.4px; line-height: 1.15; margin-bottom: 8px; }
.bo-brand-release[b-l2768b0hgs] { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.45); font-weight: 600; }

.bo-brand-divider[b-l2768b0hgs] { width: 48px; height: 2px; border-radius: 2px; margin: 22px auto; background: rgba(255,255,255,0.2); }

.bo-tagline-list[b-l2768b0hgs] { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.bo-tagline-item[b-l2768b0hgs] {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
    color: rgba(255,255,255,0.88); padding: 9px 20px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 500;
}
.bo-tagline-item i[b-l2768b0hgs] { opacity: .85; }

.bo-brand-description[b-l2768b0hgs] { font-size: 0.855rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 28px; padding: 0 4px; }

.bo-trust-badges[b-l2768b0hgs] { display: flex; flex-direction: column; gap: 8px; }
.bo-trust-badge[b-l2768b0hgs] {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11);
    border-radius: 10px; padding: 10px 16px; color: rgba(255,255,255,0.72);
    font-size: 0.82rem; font-weight: 500;
}
.bo-trust-badge i[b-l2768b0hgs] { color: #f5c98a; flex-shrink: 0; }

/* ══════════════════════════════════════
   FORM PANEL
══════════════════════════════════════ */
.bo-form-panel[b-l2768b0hgs] {
    flex: 1; display: flex; align-items: center; justify-content: center;
    background: #faf7f4; padding: 48px 32px; overflow-y: auto;
}

.bo-form-inner[b-l2768b0hgs] { width: 100%; max-width: 440px; }

.bo-mobile-brand[b-l2768b0hgs] { display: none; align-items: center; gap: 12px; margin-bottom: 28px; }
.bo-mobile-logo-ring[b-l2768b0hgs] {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, #5c2d0e, #9c4e1a);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    font-size: 1.3rem; color: #f5c98a;
}
.bo-mobile-brand-name[b-l2768b0hgs] { font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 800; color: #5c2d0e; }

.bo-conn-dots[b-l2768b0hgs] { display: flex; align-items: center; gap: 4px; }
.bo-dot[b-l2768b0hgs] { width: 7px; height: 7px; border-radius: 50%; background: #9c4e1a; animation: bo-dot-bounce-b-l2768b0hgs 1.2s ease-in-out infinite; }
.bo-dot.d1[b-l2768b0hgs] { animation-delay: 0s; }
.bo-dot.d2[b-l2768b0hgs] { animation-delay: 0.2s; }
.bo-dot.d3[b-l2768b0hgs] { animation-delay: 0.4s; }

@keyframes bo-dot-bounce-b-l2768b0hgs {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%            { transform: scale(1);   opacity: 1; }
}

/* ══════════════════════════════════════
   CONNECTIVITY CHECK
══════════════════════════════════════ */
.bo-conn-panel[b-l2768b0hgs] { text-align: center; padding: 8px 0; }

.bo-conn-icon-ring[b-l2768b0hgs] {
    position: relative;
    width: 100px; height: 100px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
}

.bo-conn-ripple[b-l2768b0hgs] { position: absolute; border-radius: 50%; border: 2px solid rgba(156, 78, 26, 0.3); animation: bo-ripple-out-b-l2768b0hgs 2.2s ease-out infinite; }
.bo-conn-ripple.r1[b-l2768b0hgs] { width: 100%; height: 100%; animation-delay: 0s; }
.bo-conn-ripple.r2[b-l2768b0hgs] { width: 140%; height: 140%; animation-delay: 0.55s; border-color: rgba(156,78,26,0.18); }
.bo-conn-ripple.r3[b-l2768b0hgs] { width: 180%; height: 180%; animation-delay: 1.1s; border-color: rgba(156,78,26,0.08); }

@keyframes bo-ripple-out-b-l2768b0hgs {
    0%   { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1);   opacity: 0; }
}

.bo-conn-icon-inner[b-l2768b0hgs] {
    position: relative; z-index: 2;
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, #5c2d0e, #9c4e1a);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(92,45,14,0.35);
    font-size: 1.85rem; color: #f5c98a;
    animation: bo-icon-pulse-b-l2768b0hgs 2s ease-in-out infinite;
}

@keyframes bo-icon-pulse-b-l2768b0hgs {
    0%, 100% { transform: scale(1);    box-shadow: 0 8px 28px rgba(92,45,14,0.35); }
    50%       { transform: scale(1.06); box-shadow: 0 12px 36px rgba(92,45,14,0.5); }
}

.bo-conn-title[b-l2768b0hgs] { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 800; color: #2d1206; margin-bottom: 10px; letter-spacing: -0.3px; }
.bo-conn-subtitle[b-l2768b0hgs] { font-size: 0.875rem; color: #78716c; line-height: 1.55; margin-bottom: 24px; }

.bo-conn-attempt-row[b-l2768b0hgs] { margin-bottom: 10px; }
.bo-attempt-badge[b-l2768b0hgs] {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    color: #9c4e1a; background: #fef3ea; border: 1px solid #f5c98a;
    padding: 4px 14px; border-radius: 50px; letter-spacing: 0.3px;
}

.bo-conn-progress-track[b-l2768b0hgs] { height: 5px; background: #e7e5e4; border-radius: 10px; overflow: hidden; margin-bottom: 16px; }
.bo-conn-progress-fill[b-l2768b0hgs] { height: 100%; background: linear-gradient(90deg, #5c2d0e, #d97706); border-radius: 10px; transition: width 0.5s ease; }

.bo-conn-status-row[b-l2768b0hgs] { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 28px; }
.bo-conn-status-text[b-l2768b0hgs] { font-size: 0.85rem; color: #78716c; font-weight: 500; }

.bo-conn-checklist[b-l2768b0hgs] { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.bo-check-item[b-l2768b0hgs] { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 10px; font-size: 0.875rem; font-weight: 500; transition: all 0.35s ease; }
.bo-check-pending[b-l2768b0hgs] { background: #f5f0eb; color: #a8a29e; }
.bo-check-done[b-l2768b0hgs] { background: #fef3ea; color: #92400e; }

/* ══════════════════════════════════════
   CONNECTIVITY FAILED
══════════════════════════════════════ */
.bo-fail-panel[b-l2768b0hgs] { text-align: center; padding: 8px 0; }

.bo-fail-icon-ring[b-l2768b0hgs] {
    width: 80px; height: 80px; border-radius: 50%;
    background: #fff2f2; border: 2px solid #fecaca;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 22px; font-size: 2.2rem; color: #dc2626;
}

.bo-fail-title[b-l2768b0hgs] { font-family: 'Poppins', sans-serif; font-size: 1.35rem; font-weight: 800; color: #7f1d1d; margin-bottom: 12px; }
.bo-fail-desc[b-l2768b0hgs] { font-size: 0.875rem; color: #78716c; line-height: 1.6; margin-bottom: 20px; }

.bo-fail-info-card[b-l2768b0hgs] {
    display: flex; align-items: flex-start; gap: 10px;
    background: #fef9ee; border: 1px solid #f5c98a;
    border-radius: 12px; padding: 14px 16px;
    font-size: 0.84rem; color: #78350f; text-align: left;
    margin-bottom: 24px; line-height: 1.5;
}

.bo-btn-retry[b-l2768b0hgs] {
    width: 100%; padding: 15px 24px;
    background: linear-gradient(135deg, #5c2d0e, #9c4e1a);
    color: #fff; border: none; border-radius: 14px;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: 0 6px 20px rgba(92,45,14,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 14px; font-family: inherit;
}
.bo-btn-retry:hover[b-l2768b0hgs] { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(92,45,14,0.42); }

.bo-fail-hint[b-l2768b0hgs] { font-size: 0.75rem; color: #a8a29e; }

/* ══════════════════════════════════════
   LOGIN FORM
══════════════════════════════════════ */
.bo-conn-ready-badge[b-l2768b0hgs] {
    display: inline-flex; align-items: center; gap: 7px;
    background: #fef9ee; border: 1px solid #f5c98a;
    color: #92400e; font-size: 0.78rem; font-weight: 700;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 24px;
    letter-spacing: 0.2px;
}
.bo-conn-ready-badge i[b-l2768b0hgs] { color: #d97706; }

.bo-step-track[b-l2768b0hgs] { display: flex; align-items: center; margin-bottom: 28px; }
.bo-step-node[b-l2768b0hgs] { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; }
.bo-node-circle[b-l2768b0hgs] { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 700; transition: background 0.3s, box-shadow 0.3s; }
.bo-node-label[b-l2768b0hgs] { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s; }
.bo-node-active .bo-node-circle[b-l2768b0hgs] { background: #7a3b12; color: #fff; box-shadow: 0 4px 16px rgba(122,59,18,0.4); }
.bo-node-active .bo-node-label[b-l2768b0hgs] { color: #7a3b12; }
.bo-node-done .bo-node-circle[b-l2768b0hgs] { background: #d97706; color: #fff; box-shadow: 0 4px 16px rgba(217,119,6,0.35); }
.bo-node-done .bo-node-label[b-l2768b0hgs] { color: #d97706; }
.bo-node-idle .bo-node-circle[b-l2768b0hgs] { background: #e7e5e4; color: #a8a29e; }
.bo-node-idle .bo-node-label[b-l2768b0hgs] { color: #a8a29e; }

.bo-step-connector[b-l2768b0hgs] { flex: 1; height: 2px; background: #e7e5e4; margin: 0 10px 20px; border-radius: 2px; transition: background 0.4s; }
.bo-connector-done[b-l2768b0hgs] { background: #d97706; }

.bo-form-header[b-l2768b0hgs] { margin-bottom: 22px; }
.bo-form-title[b-l2768b0hgs] { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: #2d1206; letter-spacing: -0.4px; margin-bottom: 8px; }
.bo-form-subtitle[b-l2768b0hgs] { font-size: 0.9rem; color: #78716c; line-height: 1.55; }
.bo-highlight-email[b-l2768b0hgs] { color: #7a3b12; font-weight: 700; word-break: break-all; }
.bo-otp-hint[b-l2768b0hgs] { font-size: 0.78rem; color: #a8a29e; margin-top: 6px; }

.bo-field-group[b-l2768b0hgs] { margin-bottom: 16px; }
.bo-field-label[b-l2768b0hgs] { display: block; font-size: 0.8rem; font-weight: 700; color: #57534e; letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 8px; }
.bo-input-wrap[b-l2768b0hgs] {
    display: flex; align-items: center; background: #fff;
    border: 2px solid #e7e5e4; border-radius: 14px; overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.bo-input-wrap:focus-within[b-l2768b0hgs] { border-color: #9c4e1a; box-shadow: 0 0 0 4px rgba(156,78,26,0.1); }
.bo-input-prefix[b-l2768b0hgs] { padding: 0 16px; color: #c4b5a5; font-size: 1.05rem; display: flex; align-items: center; flex-shrink: 0; }
.bo-input-wrap:focus-within .bo-input-prefix[b-l2768b0hgs] { color: #9c4e1a; }
.bo-form-input[b-l2768b0hgs] { flex: 1; border: none; outline: none; padding: 15px 16px 15px 0; font-size: 0.95rem; color: #2d1206; background: transparent; font-family: inherit; }
.bo-form-input[b-l2768b0hgs]::placeholder { color: #d4c5b8; }

.bo-btn-action[b-l2768b0hgs] {
    width: 100%; padding: 16px 24px;
    background: linear-gradient(135deg, #3b1a08 0%, #7a3b12 60%, #9c4e1a 100%);
    color: #fff; border: none; border-radius: 14px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: 0 6px 22px rgba(59,26,8,0.35); margin-bottom: 12px; font-family: inherit;
}
.bo-btn-action:hover:not(:disabled)[b-l2768b0hgs] { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(59,26,8,0.48); }
.bo-btn-action:disabled[b-l2768b0hgs] { opacity: 0.6; cursor: not-allowed; }

.bo-btn-ghost[b-l2768b0hgs] {
    width: 100%; padding: 13px 24px; background: transparent;
    color: #78716c; border: 2px solid #e7e5e4; border-radius: 14px;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s; margin-bottom: 12px; font-family: inherit;
}
.bo-btn-ghost:hover:not(:disabled)[b-l2768b0hgs] { background: #f5ede4; border-color: #c4b5a5; color: #7a3b12; }
.bo-btn-ghost:disabled[b-l2768b0hgs] { opacity: 0.5; cursor: not-allowed; }

.bo-status-msg[b-l2768b0hgs] { padding: 13px 16px; border-radius: 12px; font-size: 0.875rem; font-weight: 500; margin-bottom: 12px; line-height: 1.45; }
.bo-status-error[b-l2768b0hgs] { background: #fff2f2; color: #c81e1e; border: 1px solid #fecaca; }
.bo-status-success[b-l2768b0hgs] { background: #fef9ee; color: #92400e; border: 1px solid #f5c98a; }

.bo-btn-spinner[b-l2768b0hgs] { width: 17px; height: 17px; border: 2.5px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: bo-login-spin-b-l2768b0hgs 0.65s linear infinite; flex-shrink: 0; }
@keyframes bo-login-spin-b-l2768b0hgs { to { transform: rotate(360deg); } }

.bo-auth-footer[b-l2768b0hgs] {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.76rem; color: #a8a29e;
    margin-top: 20px; padding-top: 18px; border-top: 1px solid #e7e5e4;
}

.bo-back-home-row[b-l2768b0hgs] { text-align: center; margin-top: 16px; margin-bottom: 4px; }
.bo-back-home-link[b-l2768b0hgs] {
    display: inline-flex; align-items: center; gap: 2px;
    font-size: 0.82rem; font-weight: 600; color: #78716c;
    text-decoration: none; padding: 6px 12px; border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}
.bo-back-home-link:hover[b-l2768b0hgs] { background: #fdf6f0; color: #7c2d12; }

/* ══════════════════════════════════════
   OTP — gold dot boxes
══════════════════════════════════════ */
.bo-otp-group[b-l2768b0hgs] { display: flex; gap: .55rem; justify-content: center; margin: 4px 0 18px; }

.bo-otp-box[b-l2768b0hgs] { position: relative; width: 48px; height: 56px; }

.bo-otp-box input[b-l2768b0hgs] {
    width: 100%; height: 100%;
    text-align: center; font-size: 1.35rem; font-weight: 700;
    border: 2px solid #e7e5e4; border-radius: 12px;
    background: #faf7f4; color: #2d1206;
    caret-color: #9c4e1a;
    transition: border-color .2s ease, box-shadow .2s ease;
    font-family: inherit;
}
.bo-otp-box input:focus[b-l2768b0hgs] { outline: none; border-color: #9c4e1a; box-shadow: 0 0 0 4px rgba(156,78,26,0.14); background: #fff; }

.bo-otp-box.filled input[b-l2768b0hgs] { color: transparent; caret-color: transparent; }

.bo-otp-dot[b-l2768b0hgs] {
    display: none;
    position: absolute; top: 50%; left: 50%;
    width: 15px; height: 15px; border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #5c2d0e, #9c4e1a, #f5c98a);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 3px 8px -2px rgba(92,45,14,.6);
    pointer-events: none;
}
.bo-otp-box.filled .bo-otp-dot[b-l2768b0hgs] { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    .bo-brand-panel[b-l2768b0hgs] { display: none; }
    .bo-form-panel[b-l2768b0hgs] { background: linear-gradient(160deg, #2d1206 0%, #5c2d0e 55%, #9c4e1a 100%); padding: 32px 20px; }
    .bo-form-inner[b-l2768b0hgs] { background: #fff; border-radius: 24px; padding: 32px 24px; box-shadow: 0 24px 64px rgba(45,18,6,0.3); }
    .bo-mobile-brand[b-l2768b0hgs] { display: flex; }
}

@media (max-width: 420px) {
    .bo-form-panel[b-l2768b0hgs] { padding: 24px 14px; }
    .bo-form-inner[b-l2768b0hgs] { padding: 26px 18px; border-radius: 20px; }
    .bo-form-title[b-l2768b0hgs] { font-size: 1.4rem; }
    .bo-otp-box[b-l2768b0hgs] { width: 42px; height: 52px; }
    .bo-otp-box input[b-l2768b0hgs] { font-size: 1.15rem; }
    .bo-otp-group[b-l2768b0hgs] { gap: .4rem; }
}
/* /Components/Pages/Account/Login.razor.rz.scp.css */
*[b-lgvprod7r8], *[b-lgvprod7r8]::before, *[b-lgvprod7r8]::after { box-sizing: border-box; }

/* ── PAGE ── */
.login-page[b-lgvprod7r8] {
    min-height: 100vh;
    width: 100%;
    display: flex;
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    overflow: hidden;
}

/* ══════════════════════════════════════
   BRAND PANEL
══════════════════════════════════════ */
.brand-panel[b-lgvprod7r8] {
    flex: 0 0 46%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(148deg, #0B1638 0%, #3D5AA8 45%, #6E86BE 78%, #8C1F3E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 52px 44px;
}

.blob[b-lgvprod7r8] { position: absolute; border-radius: 50%; pointer-events: none; background: rgba(255,255,255,0.07); }
.blob-1[b-lgvprod7r8] { width: 380px; height: 380px; top: -140px; right: -100px; }
.blob-2[b-lgvprod7r8] { width: 240px; height: 240px; bottom: -80px; left: -70px; background: rgba(255,255,255,0.09); }
.blob-3[b-lgvprod7r8] { width: 130px; height: 130px; top: 52%; right: 28px; background: rgba(201,122,141,0.18); }

.brand-inner[b-lgvprod7r8] { position: relative; z-index: 2; text-align: center; max-width: 400px; width: 100%; }
.brand-logo-block[b-lgvprod7r8] { margin-bottom: 28px; }

.brand-logo-ring[b-lgvprod7r8] {
    width: 88px; height: 88px; border-radius: 50%;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.3);
}
.brand-logo-img[b-lgvprod7r8] { width: 62px; height: auto; display: block; }

.brand-name[b-lgvprod7r8] { font-family: 'Poppins', 'Segoe UI', sans-serif; font-size: 1.9rem; font-weight: 800; color: #fff; letter-spacing: -0.4px; line-height: 1.15; margin-bottom: 8px; }
.brand-release[b-lgvprod7r8] { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 600; }

.brand-divider[b-lgvprod7r8] { width: 48px; height: 3px; border-radius: 2px; margin: 22px auto; background: linear-gradient(90deg, #A9BADC, #C97A8D); }

.tagline-list[b-lgvprod7r8] { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 22px; }
.tagline-item[b-lgvprod7r8] {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.92); padding: 9px 18px; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; backdrop-filter: blur(6px);
}

.brand-description[b-lgvprod7r8] { font-size: 0.85rem; color: rgba(255,255,255,0.68); line-height: 1.7; margin-bottom: 28px; padding: 0 4px; }

.trust-badges[b-lgvprod7r8] { display: flex; flex-direction: column; gap: 8px; }
.trust-badge[b-lgvprod7r8] {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px; padding: 10px 16px; color: rgba(255,255,255,0.82);
    font-size: 0.82rem; font-weight: 500;
}
.trust-ico[b-lgvprod7r8] { flex-shrink: 0; opacity: .9; }

/* ══════════════════════════════════════
   FORM PANEL
══════════════════════════════════════ */
.form-panel[b-lgvprod7r8] {
    flex: 1; display: flex; align-items: center; justify-content: center;
    background: #F7F8FA; padding: 48px 32px; overflow-y: auto;
}

.form-inner[b-lgvprod7r8] { width: 100%; max-width: 440px; }

.mobile-brand[b-lgvprod7r8] { display: none; align-items: center; gap: 12px; margin-bottom: 28px; }
.mobile-logo-ring[b-lgvprod7r8] {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    flex-shrink: 0;
}
.mobile-logo-img[b-lgvprod7r8] { width: 30px; height: auto; display: block; }
.mobile-brand-name[b-lgvprod7r8] { font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 800; color: #132868; }

/* ══════════════════════════════════════
   CONNECTIVITY DOTS (used inline in the ready-badge while checking)
══════════════════════════════════════ */
.conn-dots[b-lgvprod7r8] { display: flex; align-items: center; gap: 4px; }
.dot[b-lgvprod7r8] {
    width: 7px; height: 7px; border-radius: 50%;
    background: #3D5AA8; animation: dot-bounce-b-lgvprod7r8 1.2s ease-in-out infinite;
}
.dot.d1[b-lgvprod7r8] { animation-delay: 0s; }
.dot.d2[b-lgvprod7r8] { animation-delay: 0.2s; }
.dot.d3[b-lgvprod7r8] { animation-delay: 0.4s; }

@keyframes dot-bounce-b-lgvprod7r8 {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%           { transform: scale(1);   opacity: 1; }
}

/* ══════════════════════════════════════
   CONNECTIVITY CHECK
══════════════════════════════════════ */
.conn-panel[b-lgvprod7r8] { text-align: center; padding: 8px 0; }

.conn-icon-ring[b-lgvprod7r8] {
    position: relative;
    width: 100px; height: 100px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
}

.conn-ripple[b-lgvprod7r8] {
    position: absolute; border-radius: 50%;
    border: 2px solid rgba(61,90,168,0.35);
    animation: conn-ripple-out-b-lgvprod7r8 2.2s ease-out infinite;
}
.conn-ripple.r1[b-lgvprod7r8] { width: 100%; height: 100%; animation-delay: 0s; }
.conn-ripple.r2[b-lgvprod7r8] { width: 140%; height: 140%; animation-delay: 0.55s; border-color: rgba(61,90,168,0.2); }
.conn-ripple.r3[b-lgvprod7r8] { width: 180%; height: 180%; animation-delay: 1.1s; border-color: rgba(61,90,168,0.1); }

@keyframes conn-ripple-out-b-lgvprod7r8 {
    0%   { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1);   opacity: 0; }
}

.conn-icon-inner[b-lgvprod7r8] {
    position: relative; z-index: 2;
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, #3D5AA8, #A32D4C);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 28px rgba(61,90,168,0.35);
    font-size: 1.85rem;
    animation: conn-icon-pulse-b-lgvprod7r8 2s ease-in-out infinite;
}

@keyframes conn-icon-pulse-b-lgvprod7r8 {
    0%, 100% { transform: scale(1);    box-shadow: 0 8px 28px rgba(61,90,168,0.35); }
    50%       { transform: scale(1.06); box-shadow: 0 12px 36px rgba(61,90,168,0.5); }
}

.conn-title[b-lgvprod7r8] { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 800; color: #132868; margin-bottom: 10px; letter-spacing: -0.3px; }
.conn-subtitle[b-lgvprod7r8] { font-size: 0.875rem; color: #64748b; line-height: 1.55; margin-bottom: 24px; }

.conn-attempt-row[b-lgvprod7r8] { margin-bottom: 10px; }
.attempt-badge[b-lgvprod7r8] {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    color: #3D5AA8; background: #EEF0F5; border: 1px solid #C7CEE0;
    padding: 4px 14px; border-radius: 50px; letter-spacing: 0.3px;
}

.conn-progress-track[b-lgvprod7r8] {
    height: 5px; background: #E3E6ED; border-radius: 10px;
    overflow: hidden; margin-bottom: 16px;
}
.conn-progress-fill[b-lgvprod7r8] {
    height: 100%; background: linear-gradient(90deg, #3D5AA8, #A32D4C);
    border-radius: 10px; transition: width 0.5s ease;
}

.conn-status-row[b-lgvprod7r8] { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 28px; }
.conn-status-text[b-lgvprod7r8] { font-size: 0.85rem; color: #475569; font-weight: 500; }

.conn-checklist[b-lgvprod7r8] { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.check-item[b-lgvprod7r8] {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; border-radius: 10px; font-size: 0.875rem; font-weight: 500;
    transition: all 0.35s ease;
}
.check-pending[b-lgvprod7r8] { background: #EEF0F5; color: #94a3b8; }
.check-done[b-lgvprod7r8] { background: #f0fdf4; color: #16A34A; }

/* ══════════════════════════════════════
   CONNECTIVITY FAILED
══════════════════════════════════════ */
.fail-panel[b-lgvprod7r8] { text-align: center; padding: 8px 0; }

.fail-icon-ring[b-lgvprod7r8] {
    width: 80px; height: 80px; border-radius: 50%;
    background: #F7EEF1; border: 2px solid #D9AEB8;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    font-size: 2rem; color: #A32D4C;
}

.fail-title[b-lgvprod7r8] { font-family: 'Poppins', sans-serif; font-size: 1.3rem; font-weight: 800; color: #6B1C2F; margin-bottom: 12px; letter-spacing: -0.3px; }
.fail-desc[b-lgvprod7r8] { font-size: 0.875rem; color: #64748b; line-height: 1.6; margin-bottom: 20px; }

.fail-info-card[b-lgvprod7r8] {
    display: flex; align-items: flex-start; gap: 10px;
    background: #fffbeb; border: 1px solid #fde68a;
    border-radius: 12px; padding: 14px 16px;
    font-size: 0.84rem; color: #92400e; text-align: left;
    margin-bottom: 24px; line-height: 1.5;
}

.btn-retry[b-lgvprod7r8] {
    width: 100%; padding: 15px 24px;
    background: linear-gradient(180deg, #A9BADC 0%, #23407D 50%, #0B1638 100%);
    color: #fff; border: none; border-radius: 14px;
    font-size: 0.95rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 6px 20px rgba(61,90,168,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 14px; font-family: inherit;
}
.btn-retry:hover[b-lgvprod7r8] { transform: translateY(-2px); }

.fail-hint[b-lgvprod7r8] { font-size: 0.75rem; color: #94a3b8; }

/* ══════════════════════════════════════
   LOGIN FORM
══════════════════════════════════════ */
.conn-ready-badge[b-lgvprod7r8] {
    display: inline-flex; align-items: center; gap: 7px;
    background: #f0fdf4; border: 1px solid #bbf7d0;
    color: #16A34A; font-size: 0.78rem; font-weight: 700;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 24px;
    letter-spacing: 0.2px;
}

.step-track[b-lgvprod7r8] { display: flex; align-items: center; margin-bottom: 28px; }
.step-node[b-lgvprod7r8] { display: flex; flex-direction: column; align-items: center; gap: 5px; flex-shrink: 0; }
.node-circle[b-lgvprod7r8] {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 700; transition: background 0.3s, box-shadow 0.3s;
}
.node-label[b-lgvprod7r8] { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.3s; }
.node-active .node-circle[b-lgvprod7r8] { background: linear-gradient(135deg, #3D5AA8, #A32D4C); color: #fff; box-shadow: 0 4px 16px rgba(61,90,168,0.4); }
.node-active .node-label[b-lgvprod7r8] { color: #3D5AA8; }
.node-done .node-circle[b-lgvprod7r8] { background: linear-gradient(135deg, #16A34A, #4ADE80); color: #fff; box-shadow: 0 4px 16px rgba(22,163,74,0.32); }
.node-done .node-label[b-lgvprod7r8] { color: #16A34A; }
.node-idle .node-circle[b-lgvprod7r8] { background: #E3E6ED; color: #94a3b8; }
.node-idle .node-label[b-lgvprod7r8] { color: #94a3b8; }

.step-connector[b-lgvprod7r8] { flex: 1; height: 2px; background: #E3E6ED; margin: 0 10px 20px; border-radius: 2px; transition: background 0.4s; }
.connector-done[b-lgvprod7r8] { background: #16A34A; }

.form-header[b-lgvprod7r8] { margin-bottom: 22px; }
.form-title[b-lgvprod7r8] { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: #132868; letter-spacing: -0.4px; margin-bottom: 8px; }
.form-subtitle[b-lgvprod7r8] { font-size: 0.9rem; color: #64748b; line-height: 1.55; }
.highlight-email[b-lgvprod7r8] { color: #3D5AA8; font-weight: 700; word-break: break-all; }
.otp-hint[b-lgvprod7r8] { font-size: 0.78rem; color: #94a3b8; margin-top: 6px; }

.field-group[b-lgvprod7r8] { margin-bottom: 16px; }
.field-label[b-lgvprod7r8] { display: block; font-size: 0.8rem; font-weight: 700; color: #475569; letter-spacing: 0.4px; text-transform: uppercase; margin-bottom: 8px; }
.input-wrap[b-lgvprod7r8] {
    display: flex; align-items: center; background: #fff;
    border: 2px solid #E3E6ED; border-radius: 14px; overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-wrap:focus-within[b-lgvprod7r8] { border-color: #3D5AA8; box-shadow: 0 0 0 4px rgba(61,90,168,0.14); }
.input-prefix[b-lgvprod7r8] { padding: 0 16px; color: #9BA8C4; font-size: 1.05rem; display: flex; align-items: center; flex-shrink: 0; }
.input-wrap:focus-within .input-prefix[b-lgvprod7r8] { color: #3D5AA8; }
.form-input[b-lgvprod7r8] { flex: 1; border: none; outline: none; padding: 15px 16px 15px 0; font-size: 0.95rem; color: #132868; background: transparent; font-family: inherit; }
.form-input[b-lgvprod7r8]::placeholder { color: #B7C0D6; }

.btn-action[b-lgvprod7r8] {
    width: 100%; padding: 16px 24px;
    background: linear-gradient(180deg, #A9BADC 0%, #23407D 50%, #0B1638 100%);
    color: #fff; border: none; border-radius: 14px;
    font-size: 1rem; font-weight: 700; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 6px 22px rgba(61,90,168,0.32);
    margin-bottom: 12px; font-family: inherit;
}
.btn-action:hover:not(:disabled)[b-lgvprod7r8] { transform: translateY(-2px); }
.btn-action:disabled[b-lgvprod7r8] { opacity: 0.6; cursor: not-allowed; }

.btn-ghost[b-lgvprod7r8] {
    width: 100%; padding: 13px 24px; background: transparent;
    color: #64748b; border: 2px solid #E3E6ED; border-radius: 14px;
    font-size: 0.9rem; font-weight: 600; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s; margin-bottom: 12px; font-family: inherit;
}
.btn-ghost:hover:not(:disabled)[b-lgvprod7r8] { background: #EEF0F5; border-color: #C7CEE0; color: #3D5AA8; }
.btn-ghost:disabled[b-lgvprod7r8] { opacity: 0.5; cursor: not-allowed; }

.status-msg[b-lgvprod7r8] {
    padding: 13px 16px; border-radius: 12px; font-size: 0.875rem; font-weight: 500;
    margin-bottom: 12px; line-height: 1.45;
}
.status-error[b-lgvprod7r8] { background: #F7EEF1; color: #6B1C2F; border: 1px solid #D9AEB8; }
.status-success[b-lgvprod7r8] { background: #f0fdf4; color: #16A34A; border: 1px solid #bbf7d0; }

.btn-spinner[b-lgvprod7r8] {
    width: 17px; height: 17px;
    border: 2.5px solid rgba(255,255,255,0.3); border-top-color: #fff;
    border-radius: 50%; animation: jv-login-spin-b-lgvprod7r8 0.65s linear infinite; flex-shrink: 0;
}
@keyframes jv-login-spin-b-lgvprod7r8 { to { transform: rotate(360deg); } }

.auth-footer[b-lgvprod7r8] {
    display: flex; align-items: center; gap: 7px;
    font-size: 0.76rem; color: #a0aec0;
    margin-top: 20px; padding-top: 18px; border-top: 1px solid #E3E6ED;
}

.back-home-row[b-lgvprod7r8] { text-align: center; margin-top: 16px; margin-bottom: 4px; }
.back-home-link[b-lgvprod7r8] {
    display: inline-flex; align-items: center; gap: 3px;
    font-size: 0.82rem; font-weight: 600; color: #64748b;
    text-decoration: none; padding: 6px 12px; border-radius: 8px;
    transition: background 0.18s, color 0.18s;
}
.back-home-link:hover[b-lgvprod7r8] { background: #EEF0F5; color: #3D5AA8; }

/* ══════════════════════════════════════
   OTP — colored dot boxes
══════════════════════════════════════ */
.otp-group[b-lgvprod7r8] { display: flex; gap: .55rem; justify-content: center; margin: 4px 0 18px; }

.otp-box[b-lgvprod7r8] { position: relative; width: 48px; height: 56px; }

.otp-box input[b-lgvprod7r8] {
    width: 100%; height: 100%;
    text-align: center; font-size: 1.35rem; font-weight: 700;
    border: 2px solid #E3E6ED; border-radius: 12px;
    background: #F7F8FA; color: #132868;
    caret-color: #3D5AA8;
    transition: border-color .2s ease, box-shadow .2s ease;
    font-family: inherit;
}
.otp-box input:focus[b-lgvprod7r8] { outline: none; border-color: #3D5AA8; box-shadow: 0 0 0 4px rgba(61,90,168,0.14); background: #fff; }

.otp-box.filled input[b-lgvprod7r8] { color: transparent; caret-color: transparent; }

.otp-dot[b-lgvprod7r8] {
    display: none;
    position: absolute; top: 50%; left: 50%;
    width: 15px; height: 15px; border-radius: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #3D5AA8, #23407D, #A9BADC);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 3px 8px -2px rgba(61,90,168,.6);
    pointer-events: none;
}
.otp-box:nth-child(2n) .otp-dot[b-lgvprod7r8] { background: linear-gradient(135deg, #6B1C2F, #A32D4C, #C97A8D); box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 3px 8px -2px rgba(140,31,62,.6); }
.otp-box:nth-child(3n) .otp-dot[b-lgvprod7r8] { background: linear-gradient(135deg, #0d5c30, #16A34A, #86EFAC); box-shadow: inset 0 1px 0 rgba(255,255,255,.5), 0 3px 8px -2px rgba(22,163,74,.6); }
.otp-box.filled .otp-dot[b-lgvprod7r8] { display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
    .brand-panel[b-lgvprod7r8] { display: none; }
    .form-panel[b-lgvprod7r8] { background: linear-gradient(160deg, #0B1638 0%, #3D5AA8 55%, #8C1F3E 100%); padding: 32px 20px; }
    .form-inner[b-lgvprod7r8] { background: #fff; border-radius: 24px; padding: 32px 24px; box-shadow: 0 24px 64px rgba(11,22,56,0.28); }
    .mobile-brand[b-lgvprod7r8] { display: flex; }
}

@media (max-width: 420px) {
    .form-panel[b-lgvprod7r8] { padding: 24px 14px; }
    .form-inner[b-lgvprod7r8] { padding: 26px 18px; border-radius: 20px; }
    .form-title[b-lgvprod7r8] { font-size: 1.4rem; }
    .otp-box[b-lgvprod7r8] { width: 42px; height: 52px; }
    .otp-box input[b-lgvprod7r8] { font-size: 1.15rem; }
    .otp-group[b-lgvprod7r8] { gap: .4rem; }
}
/* /Components/Pages/Account/SubscriptionExpired.razor.rz.scp.css */
*[b-rdx0cdr3pm], *[b-rdx0cdr3pm]::before, *[b-rdx0cdr3pm]::after { box-sizing: border-box; }

.sx-page[b-rdx0cdr3pm] {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: linear-gradient(160deg, #0B1638 0%, #3D5AA8 55%, #8C1F3E 100%);
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.sx-loading[b-rdx0cdr3pm] {
    display: flex; flex-direction: column; align-items: center; gap: 14px;
    color: rgba(255,255,255,0.7); font-size: 0.9rem;
}
.sx-spinner[b-rdx0cdr3pm] {
    width: 36px; height: 36px; border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: #fff;
    animation: sx-spin-b-rdx0cdr3pm 0.8s linear infinite;
}
@keyframes sx-spin-b-rdx0cdr3pm { to { transform: rotate(360deg); } }

.sx-card[b-rdx0cdr3pm] {
    width: 100%; max-width: 520px;
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    text-align: center;
}

.sx-seal[b-rdx0cdr3pm] {
    width: 72px; height: 72px; margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8C1F3E, #A32D4C);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem; color: #fff;
    box-shadow: 0 8px 24px rgba(140,31,62,0.4);
}

.sx-card h1[b-rdx0cdr3pm] {
    font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800;
    color: #132868; margin-bottom: 8px;
}
.sx-subtitle[b-rdx0cdr3pm] {
    font-size: 0.88rem; color: #64748b; line-height: 1.55; margin-bottom: 22px;
}

.sx-tenant-card[b-rdx0cdr3pm] {
    display: flex; align-items: center; gap: 12px;
    background: #F7F8FA; border: 1px solid #E3E6ED;
    border-radius: 12px; padding: 12px 16px;
    margin-bottom: 18px; text-align: left;
}
.sx-tenant-card i[b-rdx0cdr3pm] { font-size: 1.3rem; color: #3D5AA8; }
.sx-tenant-name[b-rdx0cdr3pm] { font-size: 0.95rem; font-weight: 700; color: #132868; }
.sx-tenant-code[b-rdx0cdr3pm] { font-size: 0.72rem; color: #94a3b8; font-weight: 600; }

.sx-plan-grid[b-rdx0cdr3pm] {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px 14px; margin-bottom: 18px;
    background: #F7F8FA; border: 1px solid #E3E6ED;
    border-radius: 12px; padding: 14px; text-align: left;
}
.sx-plan-label[b-rdx0cdr3pm] { display: block; font-size: 0.62rem; font-weight: 700; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.4px; }
.sx-plan-val[b-rdx0cdr3pm] { font-size: 0.85rem; color: #132868; font-weight: 600; }
.sx-expired[b-rdx0cdr3pm] { color: #A32D4C; }

.sx-contact-row[b-rdx0cdr3pm] {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px;
    font-size: 0.8rem; color: #64748b; margin-bottom: 22px;
}
.sx-contact-row a[b-rdx0cdr3pm] {
    display: inline-flex; align-items: center; gap: 5px;
    color: #3D5AA8; text-decoration: none; font-weight: 600;
}
.sx-contact-row a:hover[b-rdx0cdr3pm] { color: #A32D4C; }

.sx-actions[b-rdx0cdr3pm] { display: flex; flex-direction: column; gap: 10px; }

.sx-btn-plan[b-rdx0cdr3pm] {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 24px; border-radius: 12px; border: none;
    background: #E3E6ED; color: #94a3b8;
    font-size: 0.9rem; font-weight: 700; cursor: not-allowed; font-family: inherit;
}
.sx-btn-plan-active[b-rdx0cdr3pm] {
    cursor: pointer; color: #fff;
    background: linear-gradient(135deg, #3D5AA8, #23407D);
    box-shadow: 0 6px 20px rgba(61,90,168,0.35);
    transition: transform 0.15s, box-shadow 0.2s;
}
.sx-btn-plan-active:hover[b-rdx0cdr3pm] { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(61,90,168,0.45); }

.sx-btn-signout[b-rdx0cdr3pm] {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 11px 24px; border-radius: 12px;
    border: 1px solid #E3E6ED; background: #fff; color: #64748b;
    font-size: 0.88rem; font-weight: 600; cursor: pointer; font-family: inherit;
    transition: all 0.2s;
}
.sx-btn-signout:hover[b-rdx0cdr3pm] { background: #F7F8FA; color: #132868; }

.sx-error[b-rdx0cdr3pm] {
    margin-top: 14px; font-size: 0.8rem; color: #A32D4C; text-align: center;
}

@media (max-width: 480px) {
    .sx-card[b-rdx0cdr3pm] { padding: 30px 20px 24px; border-radius: 18px; }
    .sx-card h1[b-rdx0cdr3pm] { font-size: 1.3rem; }
    .sx-plan-grid[b-rdx0cdr3pm] { grid-template-columns: 1fr; }
}
