:root {
    --user-font-base: "Inter", sans-serif;
    --user-font-heading: "Merriweather", serif;
    --user-bg: #eef3ff;
    --user-surface: #ffffff;
    --user-text: #111827;
    --user-muted: #6b7280;
    --user-border: #dbe4ff;
    --user-primary: #0f4dff;
    --user-primary-deep: #082f9d;
    --user-accent: #00b3a7;
    --user-danger: #cf4257;
    --user-shadow: 0 20px 45px -28px rgba(17, 24, 39, 0.55);
}

body.user-body,
body.dashboard-body {
    font-family: var(--user-font-base);
    color: var(--user-text);
    background-color: var(--user-bg);
}

h1, h2, h3, h4, h5, h6,
.dashboard-page-title {
    font-family: var(--user-font-heading);
}

.container-narrow {
    max-width: 560px;
}

.auth-body {
    background:
        radial-gradient(85rem 50rem at -15% -10%, rgba(15, 77, 255, 0.2), transparent 55%),
        radial-gradient(95rem 55rem at 110% 110%, rgba(0, 179, 167, 0.2), transparent 52%),
        linear-gradient(180deg, #f8faff 0%, #edf2ff 52%, #eaf9f7 100%);
}

.auth-shell {
    width: 100%;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--user-primary-deep);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 77, 255, 0.2);
}

.auth-kicker {
    margin: 0.85rem 0 0.4rem;
    color: var(--user-muted);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.auth-title {
    margin-bottom: 0.45rem;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.3;
    color: #09102c;
}

.auth-subtitle {
    margin-bottom: 1rem;
    color: var(--user-muted);
    font-size: 0.93rem;
}

.auth-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 1.1rem;
    box-shadow: var(--user-shadow);
    backdrop-filter: blur(4px);
}

.auth-card .card-body {
    padding: 1.1rem;
}

.auth-label {
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #172554;
}

.auth-input.form-control {
    min-height: 2.9rem;
    border-radius: 0.75rem;
    border-color: #d3dcf5;
    background: #fdfdff;
    padding-left: 0.9rem;
}

.auth-input.form-control:focus {
    border-color: rgba(15, 77, 255, 0.5);
    box-shadow: 0 0 0 0.25rem rgba(15, 77, 255, 0.12);
}

.auth-input-wrap {
    position: relative;
}

.username-status-icon {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.username-icon-check::before {
    content: "\2713";
}

.username-icon-x::before {
    content: "\2715";
}

.username-ok {
    color: #0f5132;
    background: #d1e7dd;
}

.username-bad {
    color: #842029;
    background: #f8d7da;
}

.username-status-text {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: #64748b;
}

.username-text-ok {
    color: #0f5132;
}

.username-text-bad {
    color: #842029;
}

.auth-btn {
    min-height: 2.9rem;
    border-radius: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.btn-premium {
    color: #ffffff;
    border: 0;
    background: linear-gradient(120deg, var(--user-primary) 0%, var(--user-primary-deep) 70%, #091d67 100%);
}

.btn-premium-outline {
    color: var(--user-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    color: #ffffff;
    background: linear-gradient(120deg, var(--user-primary) 0%, var(--user-primary-deep) 70%, #091d67 100%);
    border-color: transparent;
}


.btn-premium:hover,
.btn-premium:focus {
    color: #ffffff;
    background: linear-gradient(120deg, #114fff 0%, #0932a8 70%, #08154c 100%);
}

.auth-helper {
    color: var(--user-muted);
    font-size: 0.84rem;
}

.auth-link {
    color: var(--user-primary-deep);
    text-decoration: none;
    font-weight: 600;
}

.auth-link:hover {
    color: var(--user-primary);
}

.auth-benefits {
    margin: 0;
    padding-left: 1rem;
    color: #0f172a;
    font-size: 0.85rem;
}

.auth-benefits li + li {
    margin-top: 0.42rem;
}

.auth-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ccdaff 25%, #ccdaff 75%, transparent);
}

.dashboard-wrapper {
    min-height: 100vh;
}

.dashboard-main {
    padding-bottom: 5.5rem;
}

.dashboard-content {
    padding-bottom: 4rem;
}

.dashboard-card {
    background: var(--user-surface);
    border: 1px solid #e4e9f7;
    border-radius: 1rem;
    box-shadow: 0 10px 22px -18px rgba(15, 23, 42, 0.6);
}

.text-muted-soft {
    color: var(--user-muted) !important;
}

.user-top-nav {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e6ecfb;
}

.top-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #0f172a;
    font-weight: 700;
}

.top-brand-mark {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, #0f4dff 0%, #082f9d 100%);
}

.avatar-circle {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: #dbe7ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: #0b3cbf;
}

.avatar-circle-lg {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
}

.avatar-image {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 999px;
    object-fit: cover;
}

.avatar-image-lg {
    width: 2rem;
    height: 2rem;
}

.nav-icon-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f8;
}

.nav-icon-btn i {
    color: #0f172a;
    font-size: 0.9rem;
}

.nav-badge-dot {
    position: absolute;
    top: 0.2rem;
    right: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: #ef4444;
    border: 2px solid #ffffff;
}

.dashboard-sidebar {
    background: #ffffff;
    border: 1px solid #e4e9f7;
    border-radius: 1rem;
    position: sticky;
    top: 5rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.8rem;
    border-radius: 0.65rem;
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 0.9rem;
}

.sidebar-link i {
    font-size: 0.95rem;
    color: #64748b;
}

.sidebar-link + .sidebar-link {
    margin-top: 0.4rem;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: #edf3ff;
    color: #0b3cbf;
}

.sidebar-link:hover i,
.sidebar-link.active i {
    color: #0b3cbf;
}

.mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1035;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid #dbe4ff;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0.4rem 0.35rem calc(0.4rem + env(safe-area-inset-bottom));
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    text-decoration: none;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    padding: 0.4rem 0.2rem;
    border-radius: 0.6rem;
}

.mobile-nav-item.active {
    color: #0b3cbf;
    background: #eaf1ff;
}

.mobile-nav-item i {
    font-size: 1rem;
    line-height: 1;
}

.metric-label {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

.metric-value {
    font-family: var(--user-font-base);
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
}

.revenue-strip {
    height: 0.8rem;
    width: 100%;
    border-radius: 999px;
    background: #eaf0ff;
    /* overflow: hidden; */
}

.revenue-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0f4dff 0%, #00b3a7 100%);
}

.activity-list {
    display: grid;
    gap: 0.75rem;
}

.activity-item {
    border: 1px solid #e6ecfb;
    border-radius: 0.8rem;
    padding: 0.75rem 0.8rem;
    background: #fbfcff;
}

.activity-item strong {
    display: block;
    font-size: 0.9rem;
    color: #0f172a;
}

.activity-item span {
    font-size: 0.82rem;
    color: #64748b;
}

.quick-action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.quick-action-btn {
    min-height: 5.5rem;
    border-radius: 0.9rem;
    padding: 0.75rem 0.55rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.42rem;
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.quick-action-btn i {
    font-size: 1.1rem;
    line-height: 1;
}

.quick-action-btn span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.quick-action-btn:hover {
    transform: translateY(-2px);
}

.qa-withdraw {
    background: #fff3f4;
    border-color: #fecdd3;
    color: #be123c;
}

.qa-withdraw:hover {
    color: #9f1239;
    box-shadow: 0 10px 20px -16px rgba(225, 29, 72, 0.75);
}

.qa-invite {
    background: #edf6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.qa-invite:hover {
    color: #1e40af;
    box-shadow: 0 10px 20px -16px rgba(29, 78, 216, 0.7);
}

.qa-tree {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #047857;
}

.qa-tree:hover {
    color: #065f46;
    box-shadow: 0 10px 20px -16px rgba(4, 120, 87, 0.72);
}

.qa-wallet {
    background: #fffbeb;
    border-color: #fde68a;
    color: #b45309;
}

.qa-wallet:hover {
    color: #92400e;
    box-shadow: 0 10px 20px -16px rgba(180, 83, 9, 0.72);
}

.user-menu-toggle {
    border: 1px solid #e2e8f8;
    background: #ffffff;
}

.user-menu-toggle:focus-visible {
    box-shadow: 0 0 0 0.18rem rgba(15, 77, 255, 0.18);
}

.user-menu-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
}

.user-menu-list {
    border-radius: 0.9rem;
    overflow: hidden;
    min-width: 12rem;
}

.user-menu-header {
    background: linear-gradient(145deg, #f8faff, #eef3ff);
    border-bottom: 1px solid #e7edff;
}

.user-menu-fullname {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
}

.user-menu-list .dropdown-item {
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    padding: 0.62rem 0.85rem;
    display: flex;
    align-items: center;
}

.user-menu-list .dropdown-item:hover,
.user-menu-list .dropdown-item:focus {
    background: #edf3ff;
    color: #0b3cbf;
}

.notification-item p {
    font-size: 0.9rem;
}

.notification-item small {
    font-size: 0.78rem;
}

.notification-list {
    display: grid;
    gap: 0.65rem;
}

.notification-card {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    border: 1px solid #e6ecfb;
    border-radius: 0.9rem;
    background: #ffffff;
    padding: 0.72rem 0.75rem;
}

.notification-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.65rem;
    background: #edf3ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notification-icon i {
    font-size: 0.95rem;
}

.notification-content {
    min-width: 0;
    flex: 1;
}

.notification-title {
    font-size: 0.86rem;
    font-weight: 700;
    color: #0f172a;
}

.notification-text {
    margin-top: 0.25rem;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #64748b;
}

.notification-time {
    font-size: 0.72rem;
    color: #94a3b8;
}

.notification-close {
    border: 0;
    background: transparent;
    color: #94a3b8;
    line-height: 1;
    padding: 0.1rem;
}

.notification-close:hover {
    color: #64748b;
}

.report-issue-pane .offcanvas-body {
    background: #f8faff;
}

.report-issue-pane .form-control {
    border-color: #dbe4ff;
    border-radius: 0.75rem;
}

.report-issue-pane .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 77, 255, 0.14);
    border-color: #9bb7ff;
}

.network-banner {
    background: #0f0c29;
    background: -webkit-linear-gradient(to bottom, #24243e, #302b63, #0f0c29);
    background: linear-gradient(to bottom, #24243e, #302b63, #0f0c29);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    box-shadow: 0 20px 35px -24px rgba(15, 12, 41, 0.9);
}

.network-kicker {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    /* font-weight: 700; */
    text-transform: uppercase;
    opacity: 0.8;
}

.network-banner h2 {
    color: #ffffff;
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    line-height: 1.35;
    margin-bottom: 0.55rem;
}

.network-banner .text-muted-soft {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 0.7rem;
    line-height: 1.55;
    max-width: 62ch;
}

.network-banner .btn-premium {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.network-banner .btn-premium:hover,
.network-banner .btn-premium:focus {
    background: rgba(255, 255, 255, 0.24);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.network-banner .btn-premium:focus-visible {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.2);
}

.referral-link-wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.55rem;
}

.referral-link-wrap .auth-input {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.referral-link-wrap .auth-input::placeholder {
    color: rgba(255, 255, 255, 0.88);
}

.social-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.42rem 0.72rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.network-banner .referral-link-wrap {
    margin-top: 0.9rem;
    margin-bottom: 0.9rem;
}

@media (min-width: 768px) {
    .network-banner {
        padding: 1.5rem !important;
    }

    .network-banner .text-muted-soft {
        font-size: 0.7rem;
    }
}

@media (min-width: 992px) {
    .user-menu-list {
        border: 1px solid #e6ecfb !important;
        box-shadow: 0 20px 35px -24px rgba(15, 23, 42, 0.55) !important;
        margin-top: 0.55rem !important;
        min-width: 15.5rem;
    }
}

.social-chip:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.22);
}

.social-ico {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.22);
}

.social-ico svg {
    width: 0.8rem;
    height: 0.8rem;
    fill: currentColor;
}

.network-stats {
    display: grid;
    gap: 0.65rem;
}

.network-stat-item {
    border: 1px solid #e6ecfb;
    border-radius: 0.8rem;
    padding: 0.68rem 0.75rem;
    background: #fbfcff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.network-stat-item span {
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 600;
}

.network-stat-item strong {
    color: #0f172a;
    font-size: 0.95rem;
}

.ref-tree {
    overflow-x: auto;
    padding-bottom: 0.35rem;
}

.tree-level {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    min-width: 330px;
}

.tree-level.root {
    margin-bottom: 0.35rem;
}

.tree-connector {
    width: 2px;
    height: 1rem;
    background: #d6e1ff;
    margin: 0.2rem auto 0.5rem;
}

.tree-node {
    min-width: 100px;
    border: 1px solid #dfe7ff;
    border-radius: 0.78rem;
    background: #f9fbff;
    padding: 0.58rem 0.62rem;
    text-align: center;
}

.tree-node strong {
    display: block;
    font-size: 0.78rem;
    color: #1e293b;
}

.tree-node span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.7rem;
    color: #64748b;
}

.tree-node.active {
    border-color: #a9c0ff;
    background: #edf3ff;
}

.wallet-balance-card {
    border-radius: 1rem;
    color: #ffffff;
    background: #0f0c29;
    background: -webkit-linear-gradient(to bottom, #24243e, #302b63, #0f0c29);
    background: linear-gradient(to bottom, #24243e, #302b63, #0f0c29);
    box-shadow: 0 20px 38px -26px rgba(15, 23, 42, 0.85);
}

.wallet-kicker {
    font-size: 0.65rem;
    /* font-weight: 700; */
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.88;
}

.wallet-balance-value {
    font-family: var(--user-font-base);
    font-size: clamp(1.6rem, 3.8vw, 2.25rem);
    font-weight: 800;
}

.wallet-balance-breakdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.wallet-balance-chip {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 0.75rem;
    padding: 0.55rem 0.65rem;
}

.wallet-balance-chip span {
    display: block;
    font-size: 0.74rem;
    opacity: 0.9;
}

.wallet-balance-chip strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.btn-deposit {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(120deg, #0f9b6c 0%, #067647 100%);
}

.btn-deposit:hover,
.btn-deposit:focus {
    color: #ffffff;
    background: linear-gradient(120deg, #14aa77 0%, #078a53 100%);
}

.btn-withdraw {
    border: 1px solid #f7c8ce;
    border-radius: 999px;
    color: #9f1239;
    background: #fff5f6;
}

.btn-withdraw:hover,
.btn-withdraw:focus {
    color: #881337;
    border-color: #f3b1bb;
    background: #ffe9ec;
}

.wallet-table thead th {
    border-bottom-color: #e8eefb;
    color: #475569;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.wallet-table tbody td {
    border-color: #eef2fb;
    font-size: 0.86rem;
    color: #1e293b;
}

.amount-credit {
    color: #047857;
    font-weight: 700;
}

.amount-debit {
    color: #b91c1c;
    font-weight: 700;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.badge-success {
    color: #065f46;
    background: #d1fae5;
}

.badge-warning {
    color: #92400e;
    background: #fef3c7;
}

.badge-danger {
    color: #991b1b;
    background: #fee2e2;
}

.wallet-pagination .page-link {
    border-color: #dbe4ff;
    color: #1d4ed8;
    /* font-weight: 600; */
}

.wallet-pagination .page-item.active .page-link {
    border-color: #1d4ed8;
    background: #1d4ed8;
    color: #ffffff;
}

.wallet-action-grid .quick-action-btn {
    border: 0;
}

.wallet-action-grid .quick-action-btn span {
    font-size: 0.76rem;
}

.deposit-pane .offcanvas-body {
    background: #f8faff;
}

.deposit-pane .form-label {
    color: #334155;
    font-size: 0.82rem;
}

.deposit-amount-input {
    border-radius: 0.8rem;
    border-color: #dbe4ff;
    min-height: 2.8rem;
}

.deposit-amount-input:focus {
    border-color: #9bb7ff;
    box-shadow: 0 0 0 0.2rem rgba(15, 77, 255, 0.14);
}

.deposit-chip-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.deposit-chip {
    border: 1px solid #cddafd;
    background: #eef3ff;
    color: #1d4ed8;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.deposit-chip:hover {
    background: #e2ebff;
    border-color: #b8ccff;
}

.active-subscription-card {
    border-radius: 1rem;
    background: linear-gradient(135deg, #eef4ff 0%, #ffffff 100%);
    border: 1px solid #dbe6ff;
}

.sub-kicker {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1d4ed8;
}

.sub-featured-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.22rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    color: #1d4ed8;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
}

.subscription-card {
    background: #ffffff;
    border: 1px solid #e4e9f7;
    border-radius: 1rem;
    box-shadow: 0 10px 22px -18px rgba(15, 23, 42, 0.5);
}

.subscription-card.is-featured {
    border-color: #c7d9ff;
    box-shadow: 0 20px 28px -22px rgba(29, 78, 216, 0.45);
}

.sub-logo-wrap {
    width: 1.95rem;
    height: 1.95rem;
    border-radius: 0.6rem;
    background: #edf3ff;
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.sub-price {
    font-size: 1.55rem;
    font-weight: 800;
    color: #0f172a;
    font-family: var(--user-font-base);
}

.sub-spec-list {
    margin: 0;
    padding-left: 1rem;
    color: #475569;
    font-size: 0.84rem;
}

.sub-spec-list li + li {
    margin-top: 0.36rem;
}

.profile-2fa-switch {
    width: 2.8rem;
    height: 1.5rem;
    cursor: pointer;
}

.profile-2fa-switch:checked {
    background-color: #0f9b6c;
    border-color: #0f9b6c;
}

.profile-2fa-switch:focus {
    box-shadow: 0 0 0 0.2rem rgba(15, 155, 108, 0.15);
}

@media (min-width: 768px) {
    .auth-card .card-body {
        padding: 1.6rem;
    }

    .dashboard-main {
        padding-bottom: 1rem;
    }

    .dashboard-content {
        padding-bottom: 0rem;
    }
}

@media (min-width: 992px) {
    .deposit-pane {
        width: 430px !important;
    }
}

.form-label {
    color: #807c7c;
}