/* MUABANXU 2026 UI system v2
 * Shared visual layer only. Transaction and authentication logic remain untouched.
 */
:root {
  --mbx2-brand: #0f766e;
  --mbx2-brand-strong: #0b5f59;
  --mbx2-brand-soft: #e9f8f4;
  --mbx2-blue: #1769e0;
  --mbx2-navy: #0b1f36;
  --mbx2-ink: #16283f;
  --mbx2-muted: #66778c;
  --mbx2-canvas: #f4f7fa;
  --mbx2-surface: #ffffff;
  --mbx2-line: #dbe5ee;
  --mbx2-warning: #b56a08;
  --mbx2-danger: #c94155;
  --mbx2-success: #087d68;
  --mbx2-radius-sm: 10px;
  --mbx2-radius: 15px;
  --mbx2-radius-lg: 22px;
  --mbx2-shadow: 0 12px 32px rgba(19, 43, 72, .07);
  --mbx2-shadow-hover: 0 18px 42px rgba(19, 43, 72, .11);
}

html { scroll-behavior: smooth; }
body {
  color: var(--mbx2-ink) !important;
  background: var(--mbx2-canvas) !important;
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scrollbar-color: #9db0c3 #edf2f6;
}
body::-webkit-scrollbar { width: 10px; height: 10px; }
body::-webkit-scrollbar-track { background: #edf2f6; }
body::-webkit-scrollbar-thumb { border: 2px solid #edf2f6; border-radius: 999px; background: #9db0c3; }
body::-webkit-scrollbar-thumb:hover { background: #728aa3; }
*, *::before, *::after { box-sizing: border-box; }
a, button, input, select, textarea { transition: border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(23, 105, 224, .25) !important;
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Loading state: neutral, compact, and consistent with the application. */
#loading { background: rgba(244, 247, 250, .97) !important; }
#loading-center { background: none !important; }
#loading-center::before,
#loading-center::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
#loading-center::before { width: 54px; height: 54px; border: 1px solid #d7e4ec; background: #fff; box-shadow: var(--mbx2-shadow); }
#loading-center::after { width: 24px; height: 24px; border: 3px solid #d6eee9; border-top-color: var(--mbx2-brand); animation: mbx2-spin .7s linear infinite; }
@keyframes mbx2-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Top navigation. */
.iq-top-navbar { background: var(--mbx2-canvas) !important; }
.iq-top-navbar .iq-navbar-custom {
  border: 1px solid rgba(211, 224, 234, .92) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 10px 30px rgba(19, 43, 72, .055) !important;
  backdrop-filter: blur(16px);
}
.iq-top-navbar .mbx-top-icon,
.iq-top-navbar .change-mode .custom-control-label {
  border-color: #d9e5ed !important;
  background: #f8fbfd !important;
  color: #5f748b !important;
}
.iq-top-navbar .mbx-top-icon:hover,
.iq-top-navbar .change-mode .custom-control-label:hover {
  border-color: #a9ddd2 !important;
  background: var(--mbx2-brand-soft) !important;
  color: var(--mbx2-brand) !important;
}
.mbx-nav-brand { display: none; align-items: center; min-width: 0; color: var(--mbx2-navy) !important; text-decoration: none !important; }
.mbx-nav-brand-mark { display: grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--mbx2-brand), #16a085); color: #fff; box-shadow: 0 7px 15px rgba(15, 118, 110, .18); }
.mbx-nav-brand-text { margin-left: 8px; overflow: hidden; font-size: 11px; font-weight: 900; letter-spacing: .035em; text-overflow: ellipsis; white-space: nowrap; }

/* Sidebar: stronger hierarchy without changing route behaviour. */
.mbx-sidebar .iq-sidebar-logo { min-height: 82px; }
.mbx-sidebar .side-menu li a { position: relative; }
.mbx-sidebar .side-menu li.active > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: .8;
  transform: translateY(-50%);
}
.mbx-sidebar .sidebar-layout.logout { margin-top: 7px; padding-top: 7px; border-top: 1px solid #edf2f6; }

/* Shared page rhythm and components. */
body .content-page { min-height: calc(100vh - 80px); background: var(--mbx2-canvas) !important; }
body .content-page > .container-fluid { width: 100%; max-width: 1460px; padding: 26px 24px 48px; }
.mbx-center > .container-fluid,
.thu-page > .container-fluid,
.sell-withdraw-page > .container-fluid,
.xu-shop-page > .container-fluid,
.xu-history-page > .container-fluid,
.thu-history-v2 > .container-fluid { padding-top: 0; padding-bottom: 0; }
.mbx-page-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin: 0 0 18px; }
.mbx-page-heading-copy { min-width: 0; }
.mbx-page-eyebrow { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 7px; color: var(--mbx2-brand); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.mbx-page-heading h1 { margin: 0; color: var(--mbx2-ink); font-size: clamp(24px, 2.4vw, 34px); font-weight: 900; letter-spacing: -.035em; line-height: 1.15; }
.mbx-page-heading p { max-width: 720px; margin: 7px 0 0; color: var(--mbx2-muted); font-size: 13px; line-height: 1.6; }
.mbx-page-assurance { display: inline-flex; align-items: center; gap: 8px; flex: 0 0 auto; padding: 9px 12px; border: 1px solid #cbe8e1; border-radius: 999px; background: #effaf7; color: var(--mbx2-success); font-size: 11px; font-weight: 800; white-space: nowrap; }

body:not(.dark) .content-page .card,
body:not(.dark) .content-page .iq-card {
  overflow: hidden;
  border: 1px solid var(--mbx2-line) !important;
  border-radius: var(--mbx2-radius) !important;
  background: var(--mbx2-surface) !important;
  box-shadow: 0 9px 26px rgba(19, 43, 72, .05) !important;
}
body:not(.dark) .content-page .card:hover { box-shadow: 0 12px 32px rgba(19, 43, 72, .075) !important; }
.content-page .card-header,
.content-page .iq-card-header { min-height: 64px; padding: 17px 20px; border-bottom: 1px solid #e8eef3 !important; background: #fff !important; }
.content-page .card-header h1,
.content-page .card-header h2,
.content-page .card-header h3,
.content-page .card-header h4,
.content-page .card-title { margin: 0; color: var(--mbx2-ink); font-weight: 900; letter-spacing: -.018em; }
.content-page .card-title { font-size: 17px; }
.content-page .card-body { padding: 20px; }

.form-group > label,
.content-page label { color: #53667c; font-size: 12px; font-weight: 800; }
body:not(.dark) .form-control,
body:not(.dark) .custom-select,
body:not(.dark) select.form-control {
  min-height: 44px;
  border: 1px solid #d6e1ea !important;
  border-radius: var(--mbx2-radius-sm) !important;
  background: #fbfdfe !important;
  color: var(--mbx2-ink) !important;
  box-shadow: none !important;
}
body:not(.dark) textarea.form-control { min-height: 112px; padding-top: 11px; }
body:not(.dark) .form-control:focus,
body:not(.dark) .custom-select:focus,
body:not(.dark) select.form-control:focus {
  border-color: var(--mbx2-brand) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(15, 118, 110, .1) !important;
}
.form-control::placeholder { color: #9aa9b8 !important; }

.btn { min-height: 40px; border-radius: 9px !important; font-weight: 800; }
.btn-sm { min-height: 34px; }
body:not(.dark) .btn-primary,
body:not(.dark) .btn-success {
  border-color: var(--mbx2-brand) !important;
  background: var(--mbx2-brand) !important;
  color: #fff !important;
  box-shadow: 0 7px 16px rgba(15, 118, 110, .16) !important;
}
body:not(.dark) .btn-primary:hover,
body:not(.dark) .btn-success:hover { border-color: var(--mbx2-brand-strong) !important; background: var(--mbx2-brand-strong) !important; transform: translateY(-1px); }
body:not(.dark) .btn-outline-primary { border-color: #a9d9cf !important; color: var(--mbx2-brand) !important; }
body:not(.dark) .btn-outline-primary:hover { border-color: var(--mbx2-brand) !important; background: var(--mbx2-brand-soft) !important; color: var(--mbx2-brand-strong) !important; }
.btn:disabled, .btn.disabled { transform: none !important; box-shadow: none !important; opacity: .62; }

.alert { position: relative; overflow: hidden; padding: 15px 17px; border-width: 1px; border-radius: 13px; box-shadow: none; }
.alert-primary, .alert-info { border-color: #cfe3f5 !important; background: #f2f8fd !important; color: #34536f !important; }
.alert-success { border-color: #cae9df !important; background: #f0faf7 !important; color: #176a5d !important; }
.alert-warning { border-color: #f1dfb6 !important; background: #fff9ec !important; color: #79571b !important; }
.alert-danger { border-color: #f0ccd3 !important; background: #fff4f6 !important; color: #873b49 !important; }
.badge { border-radius: 999px; font-weight: 800; }

.table-responsive { border-radius: 11px; }
.table { margin-bottom: 0; color: #455970; }
.table thead th {
  padding: 12px 13px;
  border: 0 !important;
  border-bottom: 1px solid #dfe8ef !important;
  background: #f6f9fb !important;
  color: #687b90 !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .055em;
  line-height: 1.35;
  text-transform: uppercase;
  vertical-align: middle;
  white-space: nowrap;
}
.table tbody td { padding: 13px; border-top: 1px solid #e9eff4 !important; color: #4a5f76; vertical-align: middle; }
.table-hover tbody tr:hover td { background: #f5faf8 !important; }
.table td b, .table td strong { color: #243a54; }
.pagination .page-link { min-width: 36px; min-height: 36px; margin: 0 3px; border: 1px solid #d8e3eb; border-radius: 9px !important; color: #536b84; text-align: center; }
.pagination .page-item.active .page-link { border-color: var(--mbx2-brand); background: var(--mbx2-brand); }

.modal-content { overflow: hidden; border: 0 !important; border-radius: 18px !important; box-shadow: 0 26px 70px rgba(9, 28, 49, .24) !important; }
.modal-header { padding: 18px 20px; border-bottom: 1px solid #e8eef3; background: #fff; }
.modal-title { color: var(--mbx2-ink); font-weight: 900; }
.modal-body { padding: 20px; }
.modal-footer { padding: 14px 20px; border-top: 1px solid #e8eef3; background: #f8fafc; }

/* Recharge: make each account an obvious, safe action card. */
.mbx-recharge-page .alert-primary { border-left: 4px solid var(--mbx2-blue) !important; }
.mbx-recharge-page .blur-shadow.shadow-showcase {
  height: 100%;
  overflow: hidden;
  border: 1px solid #dbe6ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(19, 43, 72, .055) !important;
}
.mbx-recharge-page [onclick].blur-shadow { cursor: pointer; }
.mbx-recharge-page [onclick].blur-shadow:hover { border-color: #9ed7cb; box-shadow: var(--mbx2-shadow-hover) !important; transform: translateY(-2px); }
.mbx-recharge-page .blur-shadow img { max-width: 100%; object-fit: contain; }
.mbx-recharge-page .list-group-item { padding: 11px 12px; border-color: #e8eef3; color: #596d83; font-size: 12px; }
.mbx-recharge-page .list-group-item b { color: #20364f; overflow-wrap: anywhere; }
.mbx-recharge-page .copy.btn { min-width: 34px; min-height: 32px; margin-left: 5px; padding: 4px 8px; }

/* Mobile application dock. */
.mbx-mobile-dock { display: none; }

/* Authentication pages. */
body.mbx-auth-page { min-height: 100%; background: #edf4f6 !important; }
body.mbx-auth-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 8%, rgba(23, 105, 224, .14), transparent 28%), radial-gradient(circle at 94% 88%, rgba(15, 118, 110, .16), transparent 30%), linear-gradient(145deg, #eff5fb 0%, #f8fbfc 52%, #edf8f5 100%);
  pointer-events: none;
}
body.mbx-auth-page .wrapper { position: relative; z-index: 1; }
body.mbx-auth-page .login-content { display: flex; align-items: center; min-height: 100vh; padding: 28px 18px; }
body.mbx-auth-page .login-content .container { max-width: 1120px; }
body.mbx-auth-page .login-content .container.h-100,
body.mbx-auth-page .login-content .row.h-100 { height: auto !important; }
body.mbx-auth-page .mbx-auth-layout { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr); min-height: min(760px, calc(100vh - 56px)) !important; overflow: hidden; border: 1px solid rgba(207, 222, 233, .95); border-radius: 28px; background: rgba(255, 255, 255, .9); box-shadow: 0 28px 80px rgba(19, 43, 72, .14); }
body.mbx-auth-page .mbx-auth-story,
body.mbx-auth-page .mbx-auth-form { width: auto; max-width: none !important; padding: 0; }
body.mbx-auth-page .mbx-auth-story { position: relative; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; padding: 48px; background: linear-gradient(145deg, #0b2139 0%, #0e4050 58%, #0f766e 100%); color: #fff; }
body.mbx-auth-page .mbx-auth-story::before { content: ""; position: absolute; top: -120px; right: -130px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 42px rgba(255,255,255,.035), 0 0 0 84px rgba(255,255,255,.022); }
body.mbx-auth-page .mbx-auth-story > * { position: relative; z-index: 1; }
.mbx-auth-brand { display: inline-flex; align-items: center; width: fit-content; color: #fff !important; font-size: 13px; font-weight: 900; letter-spacing: .045em; text-decoration: none !important; }
.mbx-auth-brand span { display: grid; place-items: center; width: 38px; height: 38px; margin-right: 10px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; background: rgba(255,255,255,.11); }
.mbx-auth-kicker { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px; padding: 7px 10px; border: 1px solid rgba(173, 239, 223, .25); border-radius: 999px; background: rgba(102, 224, 195, .1); color: #a9eddd; font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.mbx-auth-story h1 { max-width: 500px; margin: 0; color: #fff; font-size: clamp(34px, 4vw, 52px); font-weight: 900; letter-spacing: -.05em; line-height: 1.06; }
.mbx-auth-story p { max-width: 520px; margin: 18px 0 0; color: #c2d9df; font-size: 14px; line-height: 1.7; }
.mbx-auth-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.mbx-auth-point { display: flex; align-items: center; gap: 9px; min-width: 0; padding: 11px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.07); color: #eaf7f5; font-size: 11px; font-weight: 800; }
.mbx-auth-point i { color: #79dcc5; }
.mbx-auth-story-foot { display: flex; align-items: center; gap: 10px; margin-top: 34px; color: #a9c5cd; font-size: 11px; }
.mbx-auth-story-foot i { color: #83dfcb; }
body.mbx-auth-page .mbx-auth-form { display: flex; align-items: center; background: #fff; }
body.mbx-auth-page .login-content .card { width: 100%; margin: 0; border: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; }
body.mbx-auth-page .login-content .card-body { width: 100%; max-width: 470px; margin: auto; padding: 42px !important; }
body.mbx-auth-page .auth-logo { margin-bottom: 22px; text-align: left !important; }
body.mbx-auth-page .auth-logo img { max-height: 44px; }
body.mbx-auth-page .login-content h3 { color: var(--mbx2-ink); font-size: 30px; letter-spacing: -.035em; text-align: left !important; }
body.mbx-auth-page .login-content h3::after { color: #7a8999; font-size: 13px; line-height: 1.5; }
body.mbx-auth-page .login-content .form-control { height: 48px; border-radius: 11px !important; }
body.mbx-auth-page .login-content .btn-primary { height: 49px; border-radius: 11px !important; background: var(--mbx2-brand) !important; box-shadow: 0 10px 22px rgba(15, 118, 110, .2) !important; }
body.mbx-auth-page .login-content a { color: var(--mbx2-blue); }

/* Dark mode coverage for the shared layer. */
body.dark {
  --mbx2-canvas: #0c1726;
  --mbx2-surface: #132238;
  --mbx2-ink: #eaf2fa;
  --mbx2-muted: #9cafc3;
  --mbx2-line: #29415f;
}
body.dark .mbx-page-heading h1,
body.dark .content-page .card-title,
body.dark .content-page .card-header h1,
body.dark .content-page .card-header h2,
body.dark .content-page .card-header h3,
body.dark .content-page .card-header h4 { color: #edf5fc !important; }
body.dark .mbx-page-heading p { color: #9eb0c4; }
body.dark .mbx-page-assurance { border-color: #285e58; background: #102e2e; color: #72d6c1; }
body.dark .content-page .card-header,
body.dark .content-page .iq-card-header { border-color: #29415f !important; background: #132238 !important; }
body.dark .table thead th { border-color: #29415f !important; background: #102039 !important; color: #a8bacd !important; }
body.dark .table tbody td { border-color: #29415f !important; color: #d5e0eb; }
body.dark .table td b,
body.dark .table td strong { color: #f0f6fc; }
body.dark .table-hover tbody tr:hover td { background: #182f4c !important; }
body.dark .alert-primary,
body.dark .alert-info { border-color: #2b527a !important; background: #132c47 !important; color: #bcd7f1 !important; }
body.dark .alert-warning { border-color: #66572f !important; background: #292619 !important; color: #e5d39a !important; }
body.dark .modal-header,
body.dark .modal-footer { border-color: #29415f; background: #132238; }
body.dark .modal-title { color: #edf5fc; }

body.dark.mbx-auth-page,
body.dark .mbx-auth-form { background: #112137 !important; }
body.dark .login-content .card { background: transparent !important; }
body.dark .login-content .card-body { color: #d5e0eb; }
body.dark .login-content h3 { color: #edf5fc !important; }
body.dark .login-content label { color: #9cafc2; }
body.dark .login-content .form-control {
  background: #0e1e32 !important;
  border-color: #28415d !important;
  color: #edf5fc !important;
}
body.dark .login-content .form-control::placeholder { color: #6c8299; }
body.dark .login-content .form-control:focus { border-color: #347fdd !important; }
body.dark .mbx-auth-story { border-color: #28415d; }

@media (max-width: 991.98px) {
  body .content-page > .container-fluid { padding: 20px 16px 40px; }
  body.mbx-auth-page .mbx-auth-layout { grid-template-columns: minmax(0, .82fr) minmax(390px, 1.18fr); }
  body.mbx-auth-page .mbx-auth-story { padding: 36px 30px; }
  .mbx-auth-points { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom)); }
  body.mbx-auth-page { padding-bottom: 0; }
  body .content-page > .container-fluid { padding: 16px 12px 32px; }
  .mbx-center > .container-fluid,
  .thu-page > .container-fluid,
  .sell-withdraw-page > .container-fluid,
  .xu-shop-page > .container-fluid,
  .xu-history-page > .container-fluid,
  .thu-history-v2 > .container-fluid { padding-top: 0; padding-bottom: 0; }
  .iq-top-navbar { padding: 7px 8px 0 !important; }
  .iq-top-navbar .iq-navbar-custom { border-radius: 13px !important; }
  .iq-top-navbar .side-menu-bt-sidebar { gap: 6px !important; }
  .mbx-nav-brand { display: inline-flex; }
  .iq-top-navbar .side-menu-bt-sidebar .badge2 { display: none !important; }
  body.mbx-guest .iq-top-navbar .side-menu-bt-sidebar .border-danger { display: inline-flex !important; margin-left: auto; }
  .mbx-page-heading { display: block; margin-bottom: 14px; }
  .mbx-page-heading h1 { font-size: 25px; }
  .mbx-page-assurance { margin-top: 12px; }
  .content-page .card-header { padding: 15px 16px; }
  .content-page .card-body { padding: 16px; }
  .table thead th { font-size: 9px; }
  .table tbody td { padding: 11px 10px; font-size: 12px; }
  .iq-footer { margin-bottom: 8px; padding: 18px 12px 8px; }
  .iq-footer .row > div { text-align: center !important; }
  .iq-footer .row > div + div { margin-top: 7px; }
  .mbx-mobile-dock {
    position: fixed;
    z-index: 2300;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 10px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 62px;
    padding: 6px;
    border: 1px solid rgba(207, 221, 232, .96);
    border-radius: 18px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 16px 42px rgba(12, 31, 54, .2);
    backdrop-filter: blur(18px);
  }
  .mbx-mobile-dock a { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 3px; min-width: 0; border-radius: 12px; color: #718399; font-size: 9px; font-weight: 800; text-align: center; text-decoration: none; }
  .mbx-mobile-dock a i { font-size: 15px; }
  .mbx-mobile-dock a.active { background: var(--mbx2-brand-soft); color: var(--mbx2-brand); }
  body.dark .mbx-mobile-dock { border-color: #29415f; background: rgba(19,34,56,.95); box-shadow: 0 16px 42px rgba(0,0,0,.34); }
  body.dark .mbx-mobile-dock a { color: #93a8bf; }
  body.dark .mbx-mobile-dock a.active { background: #123c3a; color: #75d8c2; }

  body.mbx-auth-page .login-content { padding: 12px; }
  body.mbx-auth-page .mbx-auth-layout { display: block; min-height: 0 !important; border-radius: 22px; }
  body.mbx-auth-page .mbx-auth-story { min-height: auto; padding: 24px 22px; }
  .mbx-auth-brand { margin-bottom: 28px; }
  .mbx-auth-story h1 { font-size: 29px; }
  .mbx-auth-story p { margin-top: 12px; font-size: 12px; }
  .mbx-auth-points, .mbx-auth-story-foot { display: none; }
  body.mbx-auth-page .login-content .card-body { max-width: none; padding: 26px 21px 28px !important; }
  body.mbx-auth-page .auth-logo { display: none; }
  body.mbx-auth-page .login-content h3 { font-size: 25px; }
}

@media (max-width: 420px) {
  .mbx-nav-brand-text { display: none; }
  .mbx-mobile-dock { right: 7px; bottom: calc(6px + env(safe-area-inset-bottom)); left: 7px; }
  .mbx-mobile-dock a { font-size: 8px; }
  body.mbx-auth-page .mbx-auth-story { padding: 21px 18px; }
  .mbx-auth-story h1 { font-size: 26px; }
}
