/* Rabta Modern Theme */
:root {
    --tw-primary: #0a75ad;
    --tw-primary-dark: #065a87;
    --tw-primary-light: #088da5;
    --tw-accent: #23d5ab;
    --tw-accent-2: #6366f1;
    --tw-success: #10b981;
    --tw-warning: #f59e0b;
    --tw-danger: #ef4444;
    --tw-info: #3b82f6;
    --tw-surface: #f0f4f8;
    --tw-card: #ffffff;
    --tw-text: #1e293b;
    --tw-text-muted: #64748b;
    --tw-glass: rgba(255, 255, 255, 0.12);
    --tw-glass-border: rgba(255, 255, 255, 0.25);
    --tw-shadow: 0 10px 40px rgba(10, 117, 173, 0.12);
    --tw-shadow-lg: 0 20px 60px rgba(10, 117, 173, 0.18);
    --tw-radius: 16px;
    --tw-radius-sm: 10px;
    --tw-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --tw-subheader-bg: rgba(255, 255, 255, 0.95);
    --tw-subheader-border: rgba(10, 117, 173, 0.14);
    --tw-subheader-shadow: 0 4px 16px rgba(10, 117, 173, 0.06);
    --tw-subheader-input-bg: #ffffff;
    --tw-subheader-input-border: #e2e8f0;
    --tw-subheader-btn-bg: rgba(10, 117, 173, 0.08);
}

/* Page entrance animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(35, 213, 171, 0.4); }
    50% { box-shadow: 0 0 20px 8px rgba(35, 213, 171, 0.15); }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

.animate-fade-in-scale {
    animation: fadeInScale 0.5s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-delay-4 { animation-delay: 0.4s; opacity: 0; }

/* Modern KPI stat cards */
.tw-stat-card {
    background: var(--tw-card);
    border-radius: var(--tw-radius);
    padding: 1.25rem 1rem;
    box-shadow: var(--tw-shadow);
    border: 1px solid rgba(10, 117, 173, 0.08);
    transition: var(--tw-transition);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out forwards;
}

.tw-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    border-radius: var(--tw-radius) var(--tw-radius) 0 0;
}

.tw-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--tw-shadow-lg);
}

.tw-stat-card.info::before { background: linear-gradient(90deg, var(--tw-info), #60a5fa); }
.tw-stat-card.primary::before { background: linear-gradient(90deg, var(--tw-primary), var(--tw-primary-light)); }
.tw-stat-card.danger::before { background: linear-gradient(90deg, var(--tw-danger), #f87171); }
.tw-stat-card.success::before { background: linear-gradient(90deg, var(--tw-success), var(--tw-accent)); }
.tw-stat-card.warning::before { background: linear-gradient(90deg, var(--tw-warning), #fbbf24); }
.tw-stat-card.purple::before { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }

.tw-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    transition: var(--tw-transition);
}

.tw-stat-card:hover .tw-stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.tw-stat-icon.info { background: rgba(59, 130, 246, 0.12); color: var(--tw-info); }
.tw-stat-icon.primary { background: rgba(10, 117, 173, 0.12); color: var(--tw-primary); }
.tw-stat-icon.danger { background: rgba(239, 68, 68, 0.12); color: var(--tw-danger); }
.tw-stat-icon.success { background: rgba(16, 185, 129, 0.12); color: var(--tw-success); }
.tw-stat-icon.warning { background: rgba(245, 158, 11, 0.12); color: var(--tw-warning); }
.tw-stat-icon.purple { background: rgba(139, 92, 246, 0.12); color: #8b5cf6; }

.tw-stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--tw-text);
    animation: countUp 0.8s ease-out;
    line-height: 1.2;
}

.tw-stat-label {
    font-size: 0.85rem;
    color: var(--tw-text-muted);
    margin-top: 0.25rem;
}

.tw-stat-currency {
    font-size: 0.75rem;
    color: var(--tw-text-muted);
    margin-right: 4px;
}

/* Section headers */
.tw-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    margin: 1rem 0 0.75rem;
    background: linear-gradient(135deg, rgba(10, 117, 173, 0.06), rgba(35, 213, 171, 0.06));
    border-radius: var(--tw-radius-sm);
    border-inline-start: 4px solid var(--tw-primary);
    color: var(--tw-primary-dark);
    font-weight: 600;
    animation: fadeInUp 0.5s ease-out;
    direction: rtl;
    text-align: start;
}

.tw-section-header > span:first-child {
    text-align: start;
    flex: 1;
    min-width: 0;
}

/* Chart containers */
.tw-chart-card {
    background: var(--tw-card);
    border-radius: var(--tw-radius);
    box-shadow: var(--tw-shadow);
    border: 1px solid rgba(10, 117, 173, 0.06);
    padding: 0.5rem;
    margin-bottom: 1rem;
    transition: var(--tw-transition);
    animation: fadeInScale 0.6s ease-out forwards;
    height: auto;
    min-height: 0;
    overflow: hidden;
}

.tw-chart-card > [id$="chartdiv"] {
    width: 100% !important;
    max-height: 420px;
    overflow: hidden;
}

.tw-chart-card:hover {
    box-shadow: var(--tw-shadow-lg);
}

.tw-chart-title {
    padding: 0.75rem 1rem 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tw-primary-dark);
    direction: rtl;
    text-align: start;
    unicode-bidi: plaintext;
}

.tw-dashboard-charts {
    direction: rtl;
    text-align: start;
}

.tw-chart-canvas-ltr {
    direction: ltr;
    text-align: left;
}

/* Hide stuck amCharts loading rings inside dashboard chart panels */
.tw-chart-card .amcharts-preloader,
.tw-chart-card [class*="amcharts-preloader"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Page headers — layout rules live in theme-global.css (2-row: title + toolbar) */
.tw-page-header {
    background: linear-gradient(135deg, var(--tw-primary) 0%, var(--tw-primary-light) 50%, var(--tw-accent-2) 100%);
    color: white;
    border-radius: var(--tw-radius);
    box-shadow: var(--tw-shadow);
    animation: fadeInUp 0.5s ease-out;
}

.tw-page-header.retailer {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #6366f1 100%);
}

.tw-page-header.supplier {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a78bfa 100%);
}

/* Modern form controls */
.tw-form-control {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: var(--tw-radius-sm) !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    transition: var(--tw-transition) !important;
    color: var(--tw-text) !important;
}

.tw-form-control:focus {
    border-color: var(--tw-accent) !important;
    box-shadow: 0 0 0 4px rgba(35, 213, 171, 0.25) !important;
    outline: none !important;
    transform: translateY(-2px);
}

.tw-form-control::placeholder {
    color: rgba(100, 116, 139, 0.7) !important;
}

.tw-btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
    color: var(--tw-primary-dark) !important;
    border: none !important;
    border-radius: var(--tw-radius-sm) !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    transition: var(--tw-transition) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.tw-btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%) !important;
}

.tw-btn-link {
    color: rgba(255, 255, 255, 0.85) !important;
    background: transparent !important;
    border: none !important;
    font-size: 0.9rem !important;
    text-decoration: underline !important;
    transition: var(--tw-transition) !important;
}

.tw-btn-link:hover {
    color: #ffffff !important;
    transform: translateY(-1px);
}

/* Login card glassmorphism */
.tw-login-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid var(--tw-glass-border) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    padding: 2rem !important;
    width: 460px !important;
    max-width: 95vw !important;
    animation: fadeInScale 0.8s ease-out;
}

.tw-login-logo {
    max-width: 180px;
    max-height: 180px;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

.tw-login-title {
    font-weight: 700;
    font-size: 1.6rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
}

.tw-login-subtitle {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

/* Login animated background canvas */
.login-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.login-page-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main content area */
.main-body-modern {
    background: linear-gradient(180deg, #f0f4f8 0%, #e2e8f0 100%);
    min-height: calc(100vh - 3.5rem);
    padding: 1rem;
}

/* Chart toggle buttons */
.tw-chart-toggle {
    display: flex;
    gap: 6px;
    align-items: center;
}

.tw-chart-toggle .btn {
    width: 34px;
    height: 34px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--tw-transition);
    border: 2px solid transparent;
}

.tw-chart-toggle .btn.active {
    background: var(--tw-primary) !important;
    color: white !important;
    border-color: var(--tw-primary);
    transform: scale(1.1);
}

.tw-chart-toggle .btn:not(.active) {
    background: white !important;
    color: var(--tw-text-muted) !important;
    border-color: #e2e8f0;
}

.tw-chart-toggle .btn:not(.active):hover {
    border-color: var(--tw-primary);
    color: var(--tw-primary) !important;
    transform: scale(1.05);
}

/* Rabta logo spinner */
.rabta-spinner {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 88px;
    height: 88px;
}

.rabta-spinner-sm {
    width: 52px;
    height: 52px;
}

.rabta-spinner-sm .rabta-spinner-svg { width: 52px; height: 52px; }
.rabta-spinner-sm .rabta-spinner-glow { width: 60px; height: 60px; }

.rabta-spinner-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 212, 0.25) 0%, transparent 70%);
    animation: rabtaSpinGlow 2.4s ease-in-out infinite;
}

@keyframes rabtaSpinGlow {
    0%, 100% { transform: scale(0.85); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
}

.rabta-spinner-svg {
    width: 88px;
    height: 88px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 12px rgba(0, 229, 212, 0.35));
}

.rabta-spin-ring-outer {
    transform-origin: 50px 50px;
    animation: rabtaSpinCW 3s linear infinite;
}

.rabta-spin-ring-dash {
    transform-origin: 50px 50px;
    animation: rabtaSpinCCW 5s linear infinite;
}

.rabta-spin-nodes {
    transform-origin: 50px 50px;
    animation: rabtaSpinCW 8s linear infinite;
}

.rabta-spin-node {
    animation: rabtaNodePulse 1.6s ease-in-out infinite;
}

.rabta-spin-node-1 { animation-delay: 0s; }
.rabta-spin-node-2 { animation-delay: 0.2s; }
.rabta-spin-node-3 { animation-delay: 0.4s; }
.rabta-spin-node-4 { animation-delay: 0.6s; }
.rabta-spin-node-5 { animation-delay: 0.8s; }
.rabta-spin-node-6 { animation-delay: 1s; }

.rabta-spin-arc-top {
    transform-origin: 50px 50px;
    animation: rabtaArcPulse 2s ease-in-out infinite;
}

.rabta-spin-arc-bottom {
    transform-origin: 50px 50px;
    animation: rabtaArcPulse 2s ease-in-out infinite 1s;
}

.rabta-spin-letter {
    animation: rabtaLetterPulse 2.4s ease-in-out infinite;
}

@keyframes rabtaSpinCW {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rabtaSpinCCW {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes rabtaNodePulse {
    0%, 100% { opacity: 0.35; r: 3; }
    50% { opacity: 1; }
}

@keyframes rabtaArcPulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.7; }
}

@keyframes rabtaLetterPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.rabta-spinner-label {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--tw-primary);
    font-weight: 600;
    animation: rabtaLabelFade 1.8s ease-in-out infinite;
}

[data-app-theme="dark"] .rabta-spinner-label,
[data-theme="dark"] .rabta-spinner-label {
    color: #00e5d4;
}

@keyframes rabtaLabelFade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Legacy class maps to new spinner */
.lds-roller {
    display: inline-flex;
    width: 88px;
    height: 88px;
    position: relative;
}

.lds-roller > div { display: none !important; }

.lds-roller::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 212, 0.2) 0%, transparent 70%);
    animation: rabtaSpinGlow 2.4s ease-in-out infinite;
}

.lds-roller::after {
    content: 'ر';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    border: 2.5px solid transparent;
    border-radius: 50%;
    background:
        linear-gradient(#0a1525, #0a1525) padding-box,
        linear-gradient(135deg, #00e5d4, #0a75ad, #6366f1) border-box;
    animation: rabtaSpinCW 3s linear infinite;
    box-shadow: 0 0 20px rgba(0, 229, 212, 0.3);
}

/* Floating animation for login */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Glass dropdown on login */
.tw-glass-dropdown {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: var(--tw-radius) !important;
    box-shadow: var(--tw-shadow-lg) !important;
}

/* Responsive stat grid — legacy tall cards (other pages) */
.tw-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem 1rem;
    margin-bottom: 1.25rem;
}

/* Compact dashboard KPI row — same height as tw-mini-stat */
.tw-kpi-compact-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tw-kpi-compact {
    background: var(--tw-card);
    border-radius: 12px;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(10, 117, 173, 0.08);
    box-shadow: 0 4px 14px rgba(10, 117, 173, 0.06);
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 0;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.5s ease-out forwards;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tw-kpi-compact::after {
    content: '';
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    width: 3px;
    height: 100%;
    border-radius: 0 12px 12px 0;
    opacity: 0.85;
}

.tw-kpi-compact.info::after { background: linear-gradient(180deg, var(--tw-info), #60a5fa); }
.tw-kpi-compact.primary::after { background: linear-gradient(180deg, var(--tw-primary), var(--tw-primary-light)); }
.tw-kpi-compact.danger::after { background: linear-gradient(180deg, var(--tw-danger), #f87171); }
.tw-kpi-compact.success::after { background: linear-gradient(180deg, var(--tw-success), var(--tw-accent)); }
.tw-kpi-compact.warning::after { background: linear-gradient(180deg, var(--tw-warning), #fbbf24); }
.tw-kpi-compact.purple::after { background: linear-gradient(180deg, #8b5cf6, #a78bfa); }

.tw-kpi-compact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(10, 117, 173, 0.12);
}

.tw-kpi-compact-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    position: relative;
}

.tw-kpi-compact-icon.info { color: var(--tw-info); }
.tw-kpi-compact-icon.primary { color: var(--tw-primary); }
.tw-kpi-compact-icon.danger { color: var(--tw-danger); }
.tw-kpi-compact-icon.success { color: var(--tw-success); }
.tw-kpi-compact-icon.warning { color: var(--tw-warning); }
.tw-kpi-compact-icon.purple { color: #8b5cf6; }

/* Animated icon shapes — each card has a distinct form */
.tw-kpi-compact-icon.shape-ring {
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.12);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35);
    animation: kpiRingPulse 2.4s ease-in-out infinite;
}

.tw-kpi-compact-icon.shape-float {
    border-radius: 50%;
    background: rgba(10, 117, 173, 0.12);
    animation: kpiShapeFloat 3s ease-in-out infinite;
}

.tw-kpi-compact-icon.shape-hex {
    clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
    background: rgba(239, 68, 68, 0.14);
    animation: kpiHexGlow 2.8s ease-in-out infinite;
}

.tw-kpi-compact-icon.shape-corner {
    border-radius: 10px 10px 10px 2px;
    background: rgba(16, 185, 129, 0.12);
    animation: kpiCornerTilt 4s ease-in-out infinite;
}

.tw-kpi-compact-icon.shape-diamond {
    border-radius: 6px;
    background: rgba(245, 158, 11, 0.14);
    animation: kpiDiamondWobble 3.5s ease-in-out infinite;
}

.tw-kpi-compact-icon.shape-diamond .rabta-icon,
.tw-kpi-compact-icon.shape-diamond svg {
    transform: rotate(-45deg);
}

.tw-kpi-compact-icon.shape-blob {
    border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
    background: rgba(139, 92, 246, 0.14);
    animation: kpiBlobMorph 5s ease-in-out infinite;
}

.tw-kpi-compact-body {
    min-width: 0;
    flex: 1;
}

.tw-kpi-compact-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--tw-text);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tw-kpi-compact-label {
    font-size: 0.68rem;
    color: var(--tw-text-muted);
    line-height: 1.25;
    margin-top: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tw-kpi-compact-currency {
    font-size: 0.62rem;
    color: var(--tw-text-muted);
    margin-inline-start: 2px;
}

@keyframes kpiRingPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.35); }
    50% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0); }
}

@keyframes kpiShapeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes kpiHexGlow {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0)); }
    50% { filter: drop-shadow(0 0 6px rgba(239, 68, 68, 0.45)); }
}

@keyframes kpiCornerTilt {
    0%, 100% { border-radius: 10px 10px 10px 2px; transform: rotate(0deg); }
    50% { border-radius: 2px 10px 10px 10px; transform: rotate(-3deg); }
}

@keyframes kpiDiamondWobble {
    0%, 100% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(48deg) scale(1.06); }
}

@keyframes kpiBlobMorph {
    0%, 100% { border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%; }
    33% { border-radius: 58% 42% 45% 55% / 52% 58% 42% 48%; }
    66% { border-radius: 45% 55% 58% 42% / 42% 48% 52% 58%; }
}

@media (min-width: 1400px) {
    html[data-sidebar="collapsed"] .tw-kpi-compact-row {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .tw-stats-grid,
    .tw-kpi-compact-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .tw-stats-grid,
    .tw-kpi-compact-row {
        grid-template-columns: 1fr;
    }

    .tw-kpi-compact-value { font-size: 1rem; }
}

@media (max-width: 576px) {
    .tw-stat-value { font-size: 1.3rem; }
    .tw-login-card { padding: 1.5rem !important; }
}
