/* ============================================================
   Theme Index1 v2: "Clean Elevated" — Premium Light Glassmorphism
   Full game-changer upgrade — Bootstrap 5 + CSS Animations
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
    --idx1-primary: #4361ee;
    --idx1-primary-rgb: 67, 97, 238;
    --idx1-primary-light: #6c85f7;
    --idx1-primary-dark: #3a50c2;
    --idx1-accent: #7209b7;
    --idx1-accent-rgb: 114, 9, 183;
    --idx1-accent-light: #9d4edd;
    --idx1-secondary: #f72585;
    --idx1-secondary-rgb: 247, 37, 133;
    --idx1-success: #06d6a0;
    --idx1-bg-start: #eef2ff;
    --idx1-bg-mid: #fdf2f8;
    --idx1-bg-end: #ede9fe;
    --idx1-card-bg: rgba(255, 255, 255, 0.72);
    --idx1-card-bg-solid: #ffffff;
    --idx1-text: #1e293b;
    --idx1-text-muted: #64748b;
    --idx1-text-light: #94a3b8;
    --idx1-border: rgba(255, 255, 255, 0.6);
    --idx1-border-subtle: rgba(0, 0, 0, 0.06);
    --idx1-input-bg: rgba(255, 255, 255, 0.7);
    --idx1-input-border: rgba(203, 213, 225, 0.6);
    --idx1-input-focus: var(--idx1-primary);

    /* Shared component aliases */
    --aff-primary: var(--idx1-primary);
    --aff-primary-rgb: var(--idx1-primary-rgb);
    --aff-primary-dark: var(--idx1-primary-dark);
    --aff-primary-light: var(--idx1-primary-light);
    --aff-text: var(--idx1-text);
    --aff-text-muted: var(--idx1-text-muted);
    --aff-radius: 0.75rem;
    --aff-input-bg: #f8fafc;
    --aff-input-border: #cbd5e1;
    --idx1-radius: 1.5rem;
    --idx1-radius-sm: 0.875rem;
    --idx1-shadow: 0 8px 32px rgba(67, 97, 238, 0.08), 0 2px 16px rgba(0, 0, 0, 0.04);
    --idx1-shadow-hover: 0 20px 60px rgba(67, 97, 238, 0.14), 0 8px 24px rgba(0, 0, 0, 0.06);
    --idx1-shadow-glow: 0 0 40px rgba(67, 97, 238, 0.12), 0 0 80px rgba(114, 9, 183, 0.06);
}

/* --- Base & Background --- */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: var(--idx1-bg-start);
    background-image: none;
    color: var(--idx1-text);
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    isolation: isolate;
}

/* Illustration (paper planes, etc.): half strength so hero + HUD stay focal */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url('../img/bg-01.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

/*
 * Stacking: header MUST sit above .idx1-page-wrapper. Both were z-index: 1, so the wrapper
 * (incl. padding-top under the fixed nav) painted on top and blocked navbar clicks.
 * Keep header below Bootstrap offcanvas (1045) / modal (1055).
 */
body > header {
    position: relative;
    z-index: 1020;
}

body > .idx1-page-wrapper,
body > footer.idx1-footer,
body > section.aff-login-page-footer-band,
body > .aff-theme-hook {
    position: relative;
    z-index: 1;
}

/* Floating shapes - hidden (kept for compatibility) */
.idx1-shapes-container {
    display: none;
}

/* --- Navbar: Frosted Glass --- */
.idx1-navbar {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0.75rem 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.idx1-navbar .navbar-brand img {
    max-width: 200px;
    max-height: 45px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.idx1-navbar .navbar-brand img:hover {
    transform: scale(1.04);
}

.idx1-navbar .navbar-brand img.customLogoClass {
    max-width: none;
    max-height: none;
}

/* Language dropdown */
.language-changer {
    position: relative;
    color: var(--idx1-text);
}

.language-changer > a {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    color: var(--idx1-text);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.language-changer > a:hover,
.language-changer > a:focus {
    background: linear-gradient(135deg, var(--idx1-primary), var(--idx1-accent));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(var(--idx1-primary-rgb), 0.3);
}

.selected-language {
    width: 24px;
    margin-right: 8px;
}

.country-wrap .dropdown-item img {
    width: 20px;
    margin-right: 8px;
}

.dropdown-menu.country-wrap,
.country-wrap.dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--idx1-radius-sm);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    overflow: hidden;
}

.country-wrap .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 0;
}

.country-wrap .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(var(--idx1-primary-rgb), 0.08), rgba(var(--idx1-accent-rgb), 0.05));
}

/* --- Page Wrapper --- */
.idx1-page-wrapper {
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
}

/* --- SaaS asymmetric hero + floating HUD (Theme 1) --- */
.idx1-saas-hero {
    position: relative;
}

.idx1-saas-hero > .row {
    align-items: center;
}

.idx1-saas-headline {
    color: var(--idx1-text);
    letter-spacing: -1px;
    line-height: 1.05;
    font-weight: 800 !important;
    /* Between display-3 and display-2 on large viewports */
    font-size: clamp(2.45rem, 1.75rem + 3.2vw, 5.15rem);
}

.idx1-saas-intro-wrap {
    max-width: min(100%, 40rem);
    text-align: inherit;
}

.idx1-saas-subtext {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75;
    text-align: inherit;
    color: var(--idx1-text-muted);
}

/* Collapsed: compact preview; expanded: full admin copy (toggle via .idx1-saas-readmore-btn). */
.idx1-saas-subtext.idx1-saas-subtext--collapsible:not(.is-expanded) .idx1-saas-subtext-inner {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.idx1-saas-subtext.idx1-saas-subtext--collapsible.is-expanded .idx1-saas-subtext-inner {
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.idx1-saas-readmore-btn {
    font-size: 1rem;
    color: var(--idx1-primary) !important;
}

.idx1-saas-readmore-btn:hover {
    color: var(--idx1-accent) !important;
}

.idx1-saas-subtext p:last-child {
    margin-bottom: 0;
}

.idx1-saas-subtext p {
    margin-bottom: 0.85rem;
}

.idx1-saas-subtext a {
    color: var(--idx1-primary);
    font-weight: 600;
    text-decoration: none;
}

.idx1-saas-subtext a:hover {
    text-decoration: underline;
}

.idx1-saas-hud-col {
    position: relative;
    z-index: 2;
}

.idx1-saas-hero .idx1-btn-saas-cta {
    margin-top: 3rem;
}

@keyframes idx1-cta-pulse {
    0%,
    100% {
        box-shadow:
            0 2px 10px rgba(var(--idx1-primary-rgb), 0.18),
            0 0 0 0 rgba(var(--idx1-primary-rgb), 0.08);
    }

    50% {
        box-shadow:
            0 4px 18px rgba(var(--idx1-primary-rgb), 0.28),
            0 0 0 10px rgba(var(--idx1-primary-rgb), 0);
    }
}

.idx1-btn-saas-cta,
.idx1-btn-hero-cta {
    font-weight: 700;
    border-radius: 50rem;
    /* ~20% larger than prior pill (2.5rem / ~1.05rem) */
    padding: 1.26rem 3rem;
    font-size: 1.2rem;
    border: none;
    color: #fff;
    background: linear-gradient(
        135deg,
        var(--idx1-primary-dark) 0%,
        var(--idx1-primary) 38%,
        var(--idx1-accent) 100%
    );
    box-shadow: 0 2px 12px rgba(var(--idx1-primary-rgb), 0.22);
    animation: idx1-cta-pulse 2.75s ease-in-out infinite;
    transition:
        transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.45s ease;
}

.idx1-btn-saas-cta:hover,
.idx1-btn-hero-cta:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.02);
    animation: none;
    box-shadow:
        0 14px 42px rgba(var(--idx1-primary-rgb), 0.55),
        0 28px 64px rgba(var(--idx1-accent-rgb), 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

@media (prefers-reduced-motion: reduce) {
    .idx1-btn-saas-cta,
    .idx1-btn-hero-cta {
        animation: none;
        box-shadow: 0 2px 12px rgba(var(--idx1-primary-rgb), 0.22);
    }
}

.idx1-btn-saas-cta:focus-visible,
.idx1-btn-hero-cta:focus-visible {
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(var(--idx1-primary-rgb), 0.45);
}

/* --- Floating HUD cluster --- */
.idx1-hud-wrap {
    position: relative;
    max-width: 525px;
    min-height: 400px;
}

.idx1-hud-blob {
    position: absolute;
    width: 140%;
    height: 95%;
    right: -35%;
    top: 2%;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
    background:
        radial-gradient(
            circle at 35% 40%,
            rgba(129, 140, 248, 0.55) 0%,
            rgba(99, 102, 241, 0.28) 38%,
            rgba(67, 97, 238, 0.08) 62%,
            transparent 72%
        ),
        radial-gradient(circle at 70% 60%, rgba(168, 85, 247, 0.35) 0%, transparent 55%);
    filter: blur(48px);
    opacity: 0.75;
}

.idx1-hud-cluster {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Soft primary-light halo behind the whole HUD stack (separates from page illustration) */
.idx1-hud-cluster::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    width: 135%;
    height: 118%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse 78% 72% at 50% 45%,
        rgba(108, 133, 247, 0.1) 0%,
        rgba(108, 133, 247, 0.04) 42%,
        transparent 68%
    );
}

.idx1-hud-cluster > .idx1-hud-floats,
.idx1-hud-cluster > .idx1-hud-leaderboard {
    position: relative;
    z-index: 1;
}

.idx1-hud-premium-surface {
    transition:
        transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.idx1-hud-card--hero .idx1-hud-premium-surface {
    transform: translate(0, 0);
}

.idx1-hud-card--hero .idx1-hud-premium-surface:hover {
    transform: translate(0, -10px);
    box-shadow:
        0 24px 56px rgba(15, 23, 42, 0.12),
        0 10px 28px rgba(67, 97, 238, 0.14) !important;
}

.idx1-hud-card--satellite .idx1-hud-premium-surface {
    /* Less vertical offset so the payouts card does not sit on top of the leaderboard */
    transform: translate(calc(14% + 40px), 10%);
}

.idx1-hud-card--satellite .idx1-hud-premium-surface:hover {
    transform: translate(calc(14% + 40px), 4px);
    box-shadow:
        0 24px 56px rgba(15, 23, 42, 0.12),
        0 10px 28px rgba(67, 97, 238, 0.14) !important;
}

.idx1-hud-leaderboard .idx1-hud-premium-surface {
    transform: translate(0, 0);
}

.idx1-hud-leaderboard .idx1-hud-premium-surface:hover {
    transform: translate(0, -10px);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset !important;
}

.idx1-hud-glass {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 1.35rem;
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.65) inset;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.idx1-hud-pad-hero {
    padding: 1.875rem 2.125rem;
}

.idx1-hud-pad-sat {
    padding: 1.5rem 1.75rem;
}

@media (min-width: 992px) {
    .idx1-hud-pad-hero {
        padding: 2.125rem 2.5rem;
    }

    .idx1-hud-pad-sat {
        padding: 1.625rem 2rem;
    }
}

.idx1-hud-floats {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 260px;
    padding-right: 0.25rem;
}

.idx1-hud-card {
    position: relative;
}

.idx1-hud-card--hero {
    z-index: 2;
    width: 90%;
    max-width: none;
    align-self: flex-start;
}

.idx1-hud-card--satellite {
    position: relative;
    z-index: 3;
    align-self: flex-end;
    width: 72%;
    max-width: 300px;
    margin-top: 0.75rem;
    right: auto;
    top: auto;
}

.idx1-hud-stat-ico {
    font-size: 2.5rem;
    color: #64748b;
    opacity: 0.92;
}

.idx1-hud-stat-ico--sm {
    font-size: 1.6875rem;
}

.idx1-hud-stat-num {
    font-size: clamp(2.5rem, 5.5vw, 3.3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--idx1-text);
}

.idx1-hud-stat-num--sm {
    font-size: clamp(1.6875rem, 3.75vw, 2.0625rem);
}

.idx1-hud-stat-cap {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #475569;
    line-height: 1.35;
}

.idx1-hud-stat-cap--sm {
    font-size: 0.74rem;
    letter-spacing: 0.09em;
    color: #475569;
}

.idx1-hud-cluster .aff-stat-value .aff-stat-count--int,
.idx1-hud-cluster .aff-stat-money-wrap .aff-stat-count--money-running,
.idx1-hud-cluster .aff-stat-money-wrap .aff-stat-count--money-final {
    background: linear-gradient(135deg, var(--idx1-primary) 0%, var(--idx1-accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.idx1-hud-leaderboard {
    position: relative;
    z-index: 4;
    align-self: center;
    width: 84%;
    max-width: 400px;
    margin-top: 1.75rem;
    margin-left: auto;
    margin-right: auto;
}

/* Extra gap when stats + leaderboard stack so cards never collide */
.idx1-hud-leaderboard--overlap {
    margin-top: 3.25rem;
}

.idx1-hud-cluster:has(.idx1-hud-leaderboard) .idx1-hud-floats {
    margin-bottom: 0.35rem;
}

.idx1-hud-lb-surface {
    border-radius: 1.125rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.6);
    color: #e2e8f0;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.22),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.idx1-hud-lb-head {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.idx1-hud-lb-ico {
    font-size: 1.125rem;
    color: #fbbf24;
    opacity: 0.95;
}

.idx1-hud-lb-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #cbd5e1;
}

.idx1-hud-lb-row {
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.idx1-hud-lb-row--p1 {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.2);
}

.idx1-hud-lb-row--p2 {
    background: rgba(148, 163, 184, 0.12);
}

.idx1-hud-lb-row--p3 {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.18);
}

.idx1-hud-lb-rank {
    width: 1.35rem;
    height: 1.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.62rem;
    color: #fff;
    background: #475569;
}

.idx1-hud-lb-row--p1 .idx1-hud-lb-rank {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.idx1-hud-lb-row--p2 .idx1-hud-lb-rank {
    background: linear-gradient(135deg, #94a3b8, #64748b);
}

.idx1-hud-lb-row--p3 .idx1-hud-lb-rank {
    background: linear-gradient(135deg, #f97316, #c2410c);
}

.idx1-hud-lb-name {
    color: #f1f5f9;
    font-weight: 500;
}

.idx1-hud-lb-amt {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #c7d2fe;
    background: rgba(99, 102, 241, 0.28);
    border: 1px solid rgba(129, 140, 248, 0.4);
    padding: 0.18rem 0.55rem;
    border-radius: 2rem;
}

@media (max-width: 991.98px) {
    .idx1-hud-wrap {
        max-width: 100%;
        min-height: 0;
    }

    .idx1-hud-blob {
        right: -20%;
        width: 120%;
        opacity: 0.55;
    }

    .idx1-hud-card--hero {
        width: 100%;
        align-self: stretch;
    }

    .idx1-hud-card--satellite {
        position: relative;
        right: auto;
        top: auto;
        align-self: center;
        width: 100%;
        max-width: 340px;
        margin-top: 1.25rem;
        margin-left: auto;
        margin-right: auto;
    }

    .idx1-hud-card--satellite .idx1-hud-premium-surface {
        transform: translate(0, 0);
    }

    .idx1-hud-card--satellite .idx1-hud-premium-surface:hover {
        transform: translate(0, -8px);
    }

    .idx1-hud-floats {
        min-height: 0;
        padding-right: 0;
        align-items: stretch;
    }

    .idx1-hud-leaderboard,
    .idx1-hud-leaderboard--overlap {
        width: 100%;
        max-width: 100%;
        margin-top: 2rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

/* --- Drawer: Affiliate / Vendor segmented control (register) --- */
#idx1AuthOffcanvas .aff-reg-tabs-card {
    background: rgba(248, 250, 252, 0.95) !important;
    border-radius: 50rem !important;
    padding: 0.28rem !important;
    margin-bottom: 1rem !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04) inset;
}

#idx1AuthOffcanvas .aff-reg-tabs.list-group-horizontal {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0.2rem !important;
    border-radius: 50rem !important;
}

#idx1AuthOffcanvas .aff-reg-tabs .list-group-item {
    flex: 1 1 50% !important;
    border-radius: 50rem !important;
    margin: 0 !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.02em !important;
    padding: 0.55rem 0.75rem !important;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease !important;
}

#idx1AuthOffcanvas .aff-reg-tabs .list-group-item:not(.active) {
    background: transparent !important;
    color: var(--idx1-text-muted) !important;
    box-shadow: none !important;
}

#idx1AuthOffcanvas .aff-reg-tabs .list-group-item:not(.active):hover {
    color: var(--idx1-primary) !important;
    background: rgba(var(--idx1-primary-rgb), 0.06) !important;
}

#idx1AuthOffcanvas .aff-reg-tabs .list-group-item.active {
    background: linear-gradient(135deg, var(--idx1-primary), var(--idx1-accent)) !important;
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(var(--idx1-primary-rgb), 0.35) !important;
    transform: translateY(-1px);
}

/* --- Auth drawer: panel cross-fade --- */
.idx1-auth-panel--fade.is-active {
    animation: idx1DrawerPanelIn 0.28s ease-out;
}

@keyframes idx1DrawerPanelIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.idx1-auth-mode-tabs .nav-link {
    border: none;
}

/* Live pulse: stay under offcanvas, nudge away from drawer edge */
body.idx1-offcanvas-open #aff-live-pulse-toast-host[data-aff-pulse-position="bottom-right"] {
    z-index: 1020 !important;
    right: auto !important;
    left: 1rem !important;
    bottom: 1rem !important;
    max-width: min(300px, 52vw);
}

/* --- Navbar: open auth drawer --- */
.idx1-navbar-auth-btn {
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.45rem 1rem;
    border-radius: 50rem;
    color: var(--idx1-text);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
}

.idx1-navbar-auth-btn:hover {
    color: var(--idx1-primary);
    background: #fff;
    border-color: rgba(var(--idx1-primary-rgb), 0.25);
    box-shadow: 0 6px 20px rgba(var(--idx1-primary-rgb), 0.15);
}

/* --- Auth offcanvas (Bootstrap 5) --- */
.idx1-auth-offcanvas {
    --bs-offcanvas-width: min(440px, 100vw);
    z-index: 1045;
}

.idx1-auth-offcanvas-header {
    padding-bottom: 0.5rem;
}

.idx1-auth-offcanvas-body {
    overflow-y: auto;
}

.idx1-auth-offcanvas .offcanvas-title {
    font-size: 1.1rem;
    color: var(--idx1-text);
}

.idx1-auth-offcanvas-card.idx1-card {
    padding: 1.35rem 1.15rem 1.25rem;
    margin-bottom: 0;
}

.idx1-auth-offcanvas-card.idx1-card:hover {
    transform: none;
    box-shadow: var(--idx1-shadow);
}

.idx1-header-icon--sm {
    width: 52px;
    height: 52px;
    margin-bottom: 0.65rem;
}

.idx1-header-icon--sm i {
    font-size: 1.35rem;
}

.idx1-auth-offcanvas .aff-theme-blocks {
    margin-top: 1rem;
}

/* --- Card: Light Glassmorphism --- */
.idx1-card {
    background: var(--idx1-card-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--idx1-border);
    border-radius: var(--idx1-radius);
    box-shadow: var(--idx1-shadow);
    padding: 2.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.idx1-card:hover {
    box-shadow: var(--idx1-shadow-hover), var(--idx1-shadow-glow);
    transform: translateY(-2px);
}

/* Animated gradient top border (thicker, more visible) */
.idx1-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--idx1-primary),
        var(--idx1-accent),
        var(--idx1-secondary),
        var(--idx1-accent),
        var(--idx1-primary));
    background-size: 300% 100%;
    animation: shimmerBorder 4s linear infinite;
}

/* Subtle inner glow */
.idx1-card::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(180deg, rgba(var(--idx1-primary-rgb), 0.03), transparent);
    pointer-events: none;
    z-index: 0;
}

.idx1-card > * {
    position: relative;
    z-index: 1;
}

@keyframes shimmerBorder {
    0% { background-position: 300% 0; }
    100% { background-position: -300% 0; }
}

/* --- Card Header Icon (Animated) --- */
.idx1-header-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--idx1-primary), var(--idx1-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow:
        0 8px 25px rgba(var(--idx1-primary-rgb), 0.3),
        0 0 0 6px rgba(var(--idx1-primary-rgb), 0.08),
        0 0 0 12px rgba(var(--idx1-primary-rgb), 0.04);
    animation: iconPulse 3s ease-in-out infinite;
    position: relative;
}

.idx1-header-icon i {
    font-size: 1.6rem;
    color: #fff;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow:
            0 8px 25px rgba(var(--idx1-primary-rgb), 0.3),
            0 0 0 6px rgba(var(--idx1-primary-rgb), 0.08),
            0 0 0 12px rgba(var(--idx1-primary-rgb), 0.04);
    }
    50% {
        box-shadow:
            0 8px 30px rgba(var(--idx1-primary-rgb), 0.4),
            0 0 0 8px rgba(var(--idx1-primary-rgb), 0.12),
            0 0 0 16px rgba(var(--idx1-primary-rgb), 0.06);
    }
}

.idx1-card-title {
    color: var(--idx1-text);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.idx1-card-subtitle {
    color: var(--idx1-text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

/* --- Nav Pills: Glass Style --- */
.idx1-nav-pills {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    border-radius: var(--idx1-radius-sm);
    padding: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.idx1-nav-pills .nav-link {
    color: var(--idx1-text-muted);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.65rem;
    padding: 0.65rem 1rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
}

.idx1-nav-pills .nav-link:hover {
    color: var(--idx1-primary);
    background: rgba(var(--idx1-primary-rgb), 0.06);
}

.idx1-nav-pills .nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, var(--idx1-primary), var(--idx1-accent));
    box-shadow: 0 4px 15px rgba(var(--idx1-primary-rgb), 0.35);
    transform: scale(1.02);
}

/* --- Floating Label Inputs: Glass --- */
.idx1-input-group {
    position: relative;
}

.idx1-input {
    background: var(--idx1-input-bg) !important;
    backdrop-filter: blur(8px);
    border: 1.5px solid var(--idx1-input-border) !important;
    border-radius: var(--idx1-radius-sm) !important;
    color: var(--idx1-text) !important;
    height: 58px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-right: 3rem;
}

.idx1-input::placeholder {
    color: transparent;
}

.idx1-input:focus {
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: var(--idx1-primary) !important;
    box-shadow:
        0 0 0 3px rgba(var(--idx1-primary-rgb), 0.12),
        0 4px 20px rgba(var(--idx1-primary-rgb), 0.08) !important;
    transform: translateY(-1px);
}

.idx1-input-group label {
    color: var(--idx1-text-muted);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.idx1-input-group .form-control:focus ~ label,
.idx1-input-group .form-control:not(:placeholder-shown) ~ label {
    color: var(--idx1-primary);
}

/* Password toggle */
.idx1-input-group .toggle-password {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    z-index: 5;
    color: var(--idx1-text-light);
    background: transparent;
    border: none;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.idx1-input-group .toggle-password:hover {
    color: var(--idx1-primary);
    background: rgba(var(--idx1-primary-rgb), 0.08);
}

/* --- Info Banner: Glass --- */
.idx1-info-banner {
    background: linear-gradient(135deg,
        rgba(var(--idx1-primary-rgb), 0.06),
        rgba(var(--idx1-accent-rgb), 0.04));
    backdrop-filter: blur(8px);
    border: 1px solid rgba(var(--idx1-primary-rgb), 0.1);
    border-radius: var(--idx1-radius-sm);
    padding: 1.1rem 1.25rem;
    color: var(--idx1-text);
    position: relative;
    overflow: hidden;
}

.idx1-info-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--idx1-primary), var(--idx1-accent));
    border-radius: 3px;
}

.idx1-info-banner i {
    color: var(--idx1-primary);
}

.idx1-info-banner h6 {
    color: var(--idx1-text);
    font-size: 0.9rem;
    font-weight: 700;
}

.idx1-info-banner p {
    color: var(--idx1-text-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

/* --- Buttons: Gradient with Shine --- */
.idx1-btn-primary {
    background: linear-gradient(135deg, var(--idx1-primary), var(--idx1-accent));
    background-size: 200% 200%;
    border: none;
    color: #fff;
    border-radius: var(--idx1-radius-sm);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(var(--idx1-primary-rgb), 0.3);
    animation: btnGradient 6s ease infinite;
}

@keyframes btnGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.idx1-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.6s ease;
}

.idx1-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(var(--idx1-primary-rgb), 0.4),
        0 0 20px rgba(var(--idx1-accent-rgb), 0.15);
    color: #fff;
}

.idx1-btn-primary:hover::before {
    left: 100%;
}

.idx1-btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(var(--idx1-primary-rgb), 0.25);
}

.idx1-btn-outline {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1.5px solid var(--idx1-border-subtle);
    color: var(--idx1-text-muted);
    border-radius: var(--idx1-radius-sm);
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.35s ease;
}

.idx1-btn-outline:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--idx1-primary);
    color: var(--idx1-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(var(--idx1-primary-rgb), 0.1);
}

/* --- Links --- */
.idx1-link {
    color: var(--idx1-text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.idx1-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--idx1-primary), var(--idx1-accent));
    transition: width 0.3s ease;
    border-radius: 1px;
}

.idx1-link:hover {
    color: var(--idx1-primary);
}

.idx1-link:hover::after {
    width: 100%;
}

/* --- Divider --- */
.idx1-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.idx1-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--idx1-border-subtle), transparent);
}

.idx1-divider span {
    background: var(--idx1-card-bg-solid);
    padding: 0 1rem;
    color: var(--idx1-text-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

/* --- Card Footer / Trust Badge --- */
.idx1-card-footer {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--idx1-text-light);
    font-size: 0.82rem;
}

.idx1-card-footer i {
    color: var(--idx1-success);
}

/* --- Form Text --- */
.idx1-form-text {
    color: var(--idx1-text-light);
    font-size: 0.8rem;
}

/* --- Status Message --- */
#login-status-msg {
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 500;
    min-height: 1.2rem;
}

/* --- Footer: Dark Glass --- */
.idx1-footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.6rem 0;
    flex-shrink: 0;
    z-index: 1040;
}

.idx1-footer .nav-link {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.idx1-footer .nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

.idx1-footer .navbar-toggler-icon {
    filter: invert(1);
}

.idx1-footer-text {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
}

/* --- Registration Form Container Overrides --- */
.registration-form-container .form-control,
.registration-form-container .form-select {
    background: var(--idx1-input-bg);
    backdrop-filter: blur(8px);
    border: 1.5px solid var(--idx1-input-border);
    border-radius: var(--idx1-radius-sm);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--idx1-text);
}

.registration-form-container .form-control:focus,
.registration-form-container .form-select:focus {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--idx1-primary);
    box-shadow:
        0 0 0 3px rgba(var(--idx1-primary-rgb), 0.12),
        0 4px 20px rgba(var(--idx1-primary-rgb), 0.08);
    transform: translateY(-1px);
}

.registration-form-container label {
    color: var(--idx1-text-muted);
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.registration-form-container .btn-primary {
    background: linear-gradient(135deg, var(--idx1-primary), var(--idx1-accent));
    border: none;
    border-radius: var(--idx1-radius-sm);
    box-shadow: 0 6px 20px rgba(var(--idx1-primary-rgb), 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 700;
}

.registration-form-container .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 10px 30px rgba(var(--idx1-primary-rgb), 0.4),
        0 0 20px rgba(var(--idx1-accent-rgb), 0.15);
}

.registration-form-container .form-check-input:checked {
    background-color: var(--idx1-primary);
    border-color: var(--idx1-primary);
}

.registration-form-container a {
    color: var(--idx1-primary);
    font-weight: 600;
}

.registration-form-container .text-danger {
    color: #dc3545 !important;
}

/* --- Animations --- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Staggered animations for card children */
.idx1-card .idx1-stagger-1 { animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both; }
.idx1-card .idx1-stagger-2 { animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both; }
.idx1-card .idx1-stagger-3 { animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both; }
.idx1-card .idx1-stagger-4 { animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both; }
.idx1-card .idx1-stagger-5 { animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both; }
.idx1-card .idx1-stagger-6 { animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both; }

/* --- reCAPTCHA --- */
.grecaptcha-badge {
    z-index: 9999 !important;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
    .idx1-page-wrapper {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .idx1-shape-1 { width: 250px; height: 250px; }
    .idx1-shape-2 { width: 200px; height: 200px; }
    .idx1-shape-3 { width: 150px; height: 150px; }
    .idx1-shape-4 { display: none; }
    .idx1-shape-5 { display: none; }
}

@media (max-width: 575.98px) {
    .idx1-card {
        padding: 2rem 1.5rem 1.5rem;
        border-radius: 1.25rem;
    }

    .idx1-card-title {
        font-size: 1.25rem;
    }

    .idx1-header-icon {
        width: 56px;
        height: 56px;
    }

    .idx1-header-icon i {
        font-size: 1.4rem;
    }

    .idx1-nav-pills .nav-link {
        font-size: 0.8rem;
        padding: 0.55rem 0.75rem;
    }

    .idx1-page-wrapper {
        padding-bottom: 20px;
    }

    .idx1-shape-1 { width: 180px; height: 180px; }
    .idx1-shape-2 { width: 140px; height: 140px; }
    .idx1-shape-3 { display: none; }
}

@media (min-width: 1200px) {
    .idx1-card {
        padding: 2.75rem 2.5rem 2rem;
    }
}

/* --- Scrollbar: Themed --- */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(var(--idx1-primary-rgb), 0.15);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(var(--idx1-primary-rgb), 0.3);
}

/* ============================================================
   DARK MODE
   ============================================================ */
[data-bs-theme="dark"] {
    --idx1-text: #e2e8f0;
    --idx1-text-muted: #94a3b8;
    --idx1-text-light: #64748b;
    --idx1-border: rgba(255,255,255,0.08);
    --idx1-border-subtle: rgba(255,255,255,0.06);
    --idx1-input-bg: #161926;
    --idx1-input-border: rgba(255,255,255,0.1);
    --idx1-card-bg: rgba(26,29,46,0.85);
    --idx1-card-bg-solid: #1a1d2e;
    --idx1-bg-start: #0f1117;
    --idx1-bg-mid: #131520;
    --idx1-bg-end: #10121c;
    --aff-text: #e2e8f0;
    --aff-text-muted: #94a3b8;
    --aff-input-bg: #161926;
    --aff-input-border: rgba(255,255,255,0.1);
    --aff-card-bg: #1a1d2e;
}
[data-bs-theme="dark"] body {
    background: #0f1117 !important;
    color: #e2e8f0 !important;
}

[data-bs-theme="dark"] body::before {
    opacity: 0.45;
}
[data-bs-theme="dark"] .forny-container,
[data-bs-theme="dark"] .forny-form {
    color: #e2e8f0 !important;
}
[data-bs-theme="dark"] .card,
[data-bs-theme="dark"] .forny-container .card {
    background: #1a1d2e !important;
    border-color: rgba(255,255,255,0.08) !important;
}
[data-bs-theme="dark"] h1, [data-bs-theme="dark"] h2,
[data-bs-theme="dark"] h3, [data-bs-theme="dark"] h4,
[data-bs-theme="dark"] h5, [data-bs-theme="dark"] h6 {
    color: #f1f5f9 !important;
}
[data-bs-theme="dark"] .form-control {
    background: #161926 !important;
    color: #e2e8f0 !important;
    border-color: rgba(255,255,255,0.1) !important;
}
[data-bs-theme="dark"] label:not(.form-floating > label) {
    color: #cbd5e1 !important;
}
[data-bs-theme="dark"] .form-floating > label {
    color: #94a3b8 !important;
}
[data-bs-theme="dark"] .form-control:focus ~ label,
[data-bs-theme="dark"] .form-control:not(:placeholder-shown) ~ label {
    color: var(--aff-primary, #4361ee) !important;
    opacity: 1 !important;
}
[data-bs-theme="dark"] .text-muted {
    color: #94a3b8 !important;
}
[data-bs-theme="dark"] a:not(.btn) {
    color: #93c5fd;
}

/* Dark mode: Navbar glass */
[data-bs-theme="dark"] .idx1-navbar {
    background: rgba(15,17,23,0.75);
    border-bottom-color: rgba(255,255,255,0.06);
}

[data-bs-theme="dark"] .idx1-navbar-auth-btn {
    background: rgba(255,255,255,0.06);
    color: #e2e8f0;
    border-color: rgba(255,255,255,0.12);
}

[data-bs-theme="dark"] .idx1-navbar-auth-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.1);
    border-color: rgba(var(--idx1-primary-rgb), 0.35);
}

[data-bs-theme="dark"] .idx1-auth-offcanvas {
    background: var(--idx1-card-bg-solid);
    color: var(--idx1-text);
}

[data-bs-theme="dark"] .idx1-auth-offcanvas .btn-close {
    filter: invert(1);
}

[data-bs-theme="dark"] .idx1-saas-headline {
    color: #f8fafc;
}

[data-bs-theme="dark"] .idx1-hud-glass {
    background: rgba(30, 33, 48, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.38);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.35),
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

[data-bs-theme="dark"] .idx1-hud-stat-ico,
[data-bs-theme="dark"] .idx1-hud-stat-ico--sm {
    color: #94a3b8;
}

[data-bs-theme="dark"] .idx1-hud-stat-num {
    color: #f1f5f9;
}

[data-bs-theme="dark"] .idx1-hud-cluster .aff-stat-value .aff-stat-count--int,
[data-bs-theme="dark"] .idx1-hud-cluster .aff-stat-money-wrap .aff-stat-count--money-running,
[data-bs-theme="dark"] .idx1-hud-cluster .aff-stat-money-wrap .aff-stat-count--money-final {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: #c7d2fe;
}

[data-bs-theme="dark"] .idx1-hud-blob {
    opacity: 0.45;
}

[data-bs-theme="dark"] #idx1AuthOffcanvas .aff-reg-tabs-card {
    background: rgba(15, 17, 23, 0.65) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

[data-bs-theme="dark"] #idx1AuthOffcanvas .aff-reg-tabs .list-group-item:not(.active) {
    color: #94a3b8 !important;
}

[data-bs-theme="dark"] #idx1AuthOffcanvas .aff-reg-tabs .list-group-item:not(.active):hover {
    color: #e2e8f0 !important;
    background: rgba(255, 255, 255, 0.06) !important;
}
/* Dark mode: Nav pills */
[data-bs-theme="dark"] .idx1-nav-pills {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}
/* Dark mode: Input focus */
[data-bs-theme="dark"] .idx1-input:focus {
    background: #1e2235 !important;
}
/* Dark mode: Language dropdown */
[data-bs-theme="dark"] .language-changer > a {
    background: rgba(255,255,255,0.06);
    color: #e2e8f0;
    border-color: rgba(255,255,255,0.1);
}
[data-bs-theme="dark"] .dropdown-menu.country-wrap,
[data-bs-theme="dark"] .country-wrap.dropdown-menu {
    background: #1a1d2e;
    border-color: rgba(255,255,255,0.1);
}
[data-bs-theme="dark"] .country-wrap .dropdown-item {
    color: #e2e8f0;
}
[data-bs-theme="dark"] .country-wrap .dropdown-item:hover {
    background: rgba(var(--idx1-primary-rgb),0.15);
}
/* Dark mode: Button outlines */
[data-bs-theme="dark"] .idx1-btn-outline {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.12);
    color: #cbd5e1;
}
[data-bs-theme="dark"] .idx1-btn-outline:hover {
    background: rgba(255,255,255,0.08);
}
/* Dark mode: Divider */
[data-bs-theme="dark"] .idx1-divider span {
    background: #1a1d2e;
}
/* Dark mode: Registration form overrides */
[data-bs-theme="dark"] .registration-form-container .form-control,
[data-bs-theme="dark"] .registration-form-container .form-select {
    background: #161926 !important;
    border-color: rgba(255,255,255,0.1) !important;
    color: #e2e8f0 !important;
}
[data-bs-theme="dark"] .registration-form-container .form-control:focus,
[data-bs-theme="dark"] .registration-form-container .form-select:focus {
    background: #1e2235 !important;
}
