:root {
  --bg-1: #162338;
  --bg-2: #1c2d47;
  --surface: rgba(31, 45, 69, 0.78);
  --surface-2: rgba(36, 52, 80, 0.94);
  --line: rgba(191, 212, 255, 0.16);
  --line-strong: rgba(96, 165, 250, 0.28);
  --text: #f3f7fd;
  --muted: #c2d1e4;
  --muted-2: #8ca3c2;
  --accent: #5ea5ff;
  --accent-2: #22d3ee;
  --success: #34d399;
  --danger: #fb7185;
  --shadow-lg: 0 28px 54px rgba(6, 16, 34, 0.28);
  --shadow-md: 0 16px 30px rgba(6, 16, 34, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(1100px 520px at 95% -10%, rgba(94, 165, 255, 0.16) 0%, transparent 60%),
    radial-gradient(900px 420px at -10% 20%, rgba(34, 211, 238, 0.10) 0%, transparent 58%),
    linear-gradient(180deg, #223653 0%, var(--bg-2) 48%, #192a43 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.28), transparent 82%);
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

#app {
  position: relative;
  z-index: 1;
}

.shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  min-height: 100vh;
  transition: grid-template-columns .22s ease;
}

.shell.sidebar-collapsed {
  grid-template-columns: 0 minmax(0, 1fr);
}

.sidebar {
  position: relative;
  min-height: 100vh;
  padding: 22px 18px;
  background: linear-gradient(180deg, rgba(23, 36, 56, 0.98) 0%, rgba(27, 42, 65, 0.98) 100%);
  border-right: 1px solid rgba(96, 165, 250, 0.18);
  box-shadow: 14px 0 30px rgba(8, 18, 34, 0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  transition: opacity .18s ease, transform .22s ease, padding .22s ease, border-color .22s ease;
}

.shell.sidebar-collapsed .sidebar {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18px);
  padding-left: 0;
  padding-right: 0;
  border-right-color: transparent;
  box-shadow: none;
}

.sidebar-logo {
  width: 100%;
  max-width: 150px;
  align-self: center;
  display: block;
  border-radius: 18px;
  padding: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(96, 165, 250, 0.18);
  box-shadow: 0 16px 28px rgba(2, 8, 23, 0.32);
}

.sidebar-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sidebar-title h1 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.sidebar-title p,
.user-chip small,
.section-note,
.muted {
  color: var(--muted);
}

.user-chip {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(96, 165, 250, 0.16);
}

.user-chip strong {
  display: block;
  margin-bottom: 4px;
}

.nav-list {
  display: grid;
  gap: 10px;
}

.nav-button,
.tab-button,
.ghost-button,
.primary-button,
.danger-button {
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.nav-button {
  text-align: left;
  padding: 14px 16px;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(96, 165, 250, 0.10);
}

.nav-button:hover,
.tab-button:hover,
.ghost-button:hover,
.primary-button:hover,
.danger-button:hover {
  transform: translateY(-1px);
}

.nav-button.active {
  color: #f8fbff;
  background: linear-gradient(135deg, rgba(94, 165, 255, 0.20), rgba(34, 211, 238, 0.14));
  border-color: rgba(96, 165, 250, 0.34);
  box-shadow: 0 18px 32px rgba(13, 34, 64, 0.26);
}

.logout-button {
  margin-top: auto;
}

.content {
  padding: 28px;
}

.content-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.content-toolbar-copy {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.content-toolbar-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(96, 165, 250, 0.16);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.content-toolbar-environment {
  display: flex;
  align-items: center;
}

.env-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(96, 165, 250, 0.22);
  background: rgba(255,255,255,0.06);
  color: #e7f1ff;
}

.env-badge--work {
  background: rgba(251, 191, 36, 0.16);
  border-color: rgba(251, 191, 36, 0.38);
  color: #ffe8a3;
}

.env-badge--production {
  background: rgba(52, 211, 153, 0.14);
  border-color: rgba(52, 211, 153, 0.34);
  color: #baf5d7;
}

.sidebar-toggle-button {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  flex: 0 0 auto;
}

.sidebar-floating-toggle {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 60;
  box-shadow: 0 18px 32px rgba(2, 8, 23, 0.28);
}

.price-marker-shell {
  background: transparent;
  border: 0;
}

.price-marker {
  display: block;
  border-radius: 999px;
  background: var(--marker-color, #3b82f6);
  border: 2px solid rgba(10, 20, 36, 0.72);
  box-shadow: 0 6px 16px rgba(8, 18, 34, 0.28);
}

.price-marker-selected {
  border-color: #f8fbff;
  box-shadow: 0 0 0 4px rgba(248, 251, 255, 0.22), 0 8px 18px rgba(8, 18, 34, 0.34);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 340px at 64% 50%, rgba(21, 101, 192, 0.18) 0%, transparent 58%),
    radial-gradient(520px 240px at 86% 12%, rgba(56, 189, 248, 0.14) 0%, transparent 62%),
    linear-gradient(135deg, rgba(11, 25, 45, 0.98) 0%, rgba(15, 35, 61, 0.97) 34%, rgba(24, 45, 76, 0.96) 100%);
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 30px;
  padding: 30px;
  margin-bottom: 22px;
  box-shadow: 0 30px 56px rgba(5, 15, 30, 0.34);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(164, 206, 255, 0.14);
  pointer-events: none;
}

.hero-topline,
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-topline {
  margin-bottom: 18px;
}

.hero-meta {
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(255,255,255,0.06);
  color: #e7f0ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 6px rgba(94, 165, 255, 0.1);
}

.hero h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.3rem, 4.1vw, 4rem);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 800;
  color: #f8fbff;
}

.hero p {
  margin: 18px 0 0;
  max-width: 72ch;
  color: #d8e4f5;
  line-height: 1.7;
}

.welcome-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 20px;
  align-items: stretch;
}

.welcome-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-kicker {
  color: #98b9df;
  font-family: "IBM Plex Mono", monospace;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.welcome-subtitle {
  margin-top: 14px;
  font-size: 1.18rem;
  font-weight: 700;
  color: #f3f7fd;
}

.welcome-status-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(164, 206, 255, 0.16);
}

.welcome-status-label {
  color: var(--muted-2);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.welcome-status-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #f8fbff;
}

.welcome-status-text {
  color: #d7e5f7;
  line-height: 1.65;
}

.welcome-progress {
  position: relative;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(148, 163, 184, 0.14);
}

.welcome-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  animation: welcome-progress-slide 1.4s ease-in-out infinite;
}

.welcome-status-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.welcome-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(96, 165, 250, 0.14);
  color: #e7f0ff;
  font-size: .82rem;
}

@keyframes welcome-progress-slide {
  0% {
    transform: translateX(-18%);
  }
  50% {
    transform: translateX(105%);
  }
  100% {
    transform: translateX(-18%);
  }
}

.panel,
.auth-panel,
.table-card,
.detail-card,
.modal-card {
  min-width: 0;
  background: linear-gradient(180deg, rgba(32, 46, 71, 0.92) 0%, rgba(36, 52, 80, 0.94) 100%);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.panel,
.table-card,
.detail-card,
.auth-panel {
  padding: 22px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.kpi {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(96, 165, 250, 0.16);
}

.kpi-label {
  color: var(--muted-2);
  font-size: .82rem;
}

.kpi-value {
  margin-top: 10px;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.05;
}

.kpi-sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: .84rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.35fr);
  gap: 18px;
}

.browser-top-grid,
.browser-bottom-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.browser-top-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: stretch;
}

.browser-bottom-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  margin-top: 18px;
}

.browser-stack {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.browser-map-stack {
  align-content: start;
}

.browser-investments-stack {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.browser-investments-stack > .browser-table-card {
  flex: 1;
}

.browser-apartments-stack,
.browser-selected-stack {
  height: 100%;
}

.browser-selected-stack {
  display: flex;
  flex-direction: column;
}

.browser-selected-stack > #browser-selected-apartment {
  flex: 1;
  display: flex;
}

.browser-selected-stack > #browser-selected-apartment > .detail-card,
.browser-selected-stack > #browser-selected-apartment > .panel {
  flex: 1;
}

.browser-selected-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.browser-section-top {
  margin-top: 18px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #dce9fb;
  font-size: .88rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  background: rgba(12, 24, 42, 0.38);
  color: var(--text);
  outline: none;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-button,
.ghost-button,
.danger-button {
  padding: 12px 16px;
}

.primary-button {
  color: #f8fbff;
  background: linear-gradient(135deg, #2563eb, #22d3ee);
  box-shadow: 0 18px 32px rgba(37, 99, 235, 0.24);
}

.ghost-button {
  color: var(--text);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.danger-button {
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #fb7185);
}

.button-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

button:disabled {
  opacity: .58;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.report-toolbar {
  align-items: center;
}

.table-wrap {
  overflow: auto;
}

.table-wrap-limited {
  --visible-rows: 15;
  max-height: calc(56px + (var(--visible-rows) * 52px));
  overflow: auto;
  scrollbar-gutter: stable;
}

.browser-table-card {
  display: flex;
  flex-direction: column;
}

.browser-table-wrap {
  flex: 1;
  min-height: calc(56px + (var(--visible-rows, 15) * 52px));
}

.browser-table-wrap.table-wrap-limited {
  max-height: calc(56px + (var(--visible-rows, 15) * 52px));
}

.table-wrap::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

.table-wrap::-webkit-scrollbar-thumb {
  background: rgba(96, 165, 250, 0.34);
  border-radius: 999px;
}

.table-wrap::-webkit-scrollbar-track {
  background: rgba(12, 24, 42, 0.22);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.10);
  text-align: left;
  vertical-align: top;
}

th {
  position: sticky;
  top: 0;
  background: #223654;
  color: #dce9fb;
  font-size: .8rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.browser-table-wrap .col-etap {
  max-width: 112px;
  width: 112px;
}

.browser-table-wrap td.col-etap {
  line-height: 1.25;
}

.two-line-cell {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 2.5em;
  overflow: hidden;
}

.sortable-th {
  padding: 0;
}

.table-sort-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  text-transform: inherit;
  letter-spacing: inherit;
  font-size: inherit;
  font-weight: 700;
  cursor: pointer;
}

.table-sort-button:hover {
  background: rgba(255,255,255,0.04);
}

.table-sort-button:focus-visible {
  outline: 2px solid rgba(94, 165, 255, 0.55);
  outline-offset: -2px;
}

.table-sort-indicator {
  flex: 0 0 auto;
  color: var(--accent);
  opacity: .82;
  font-size: .82rem;
}

tbody tr {
  cursor: pointer;
}

tbody tr:hover {
  background: rgba(255,255,255,0.035);
}

tbody tr.is-active {
  background: rgba(94, 165, 255, 0.13);
}

.empty-state,
.info-box,
.error-box,
.success-box {
  padding: 14px 16px;
  border-radius: 16px;
  margin: 14px 0;
}

.empty-state,
.info-box {
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.error-box {
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(251, 113, 133, 0.24);
}

.success-box {
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(52, 211, 153, 0.24);
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tab-button {
  padding: 12px 14px;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(96, 165, 250, 0.12);
}

.tab-button.active {
  color: #fff;
  background: rgba(94, 165, 255, 0.16);
  border-color: rgba(96, 165, 250, 0.32);
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 8, 23, 0.62);
  z-index: 40;
}

.modal.is-open {
  display: flex;
}

.modal-card {
  width: min(980px, 100%);
  max-height: 86vh;
  overflow: auto;
  padding: 24px;
}

.map-box {
  height: 540px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.18);
}

.auth-shell {
  width: min(1760px, calc(100vw - 24px));
  max-width: none;
  margin: 0 auto;
  padding: 30px 12px 40px;
}

.auth-hero {
  padding: 24px 30px;
}

.auth-hero-logo-frame {
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 48px rgba(6, 18, 35, 0.22);
}

.auth-hero-logo {
  display: block;
  width: min(100%, 980px);
  height: auto;
  margin: 0 auto;
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(620px, 1fr);
  gap: 28px;
  align-items: start;
}

.auth-side {
  display: grid;
  gap: 18px;
}

.auth-side .card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-side .kpi {
  min-height: 168px;
}

.auth-panel {
  position: sticky;
  top: 24px;
  padding: 32px;
  background:
    radial-gradient(540px 260px at 100% -10%, rgba(94, 165, 255, 0.16), transparent 58%),
    linear-gradient(180deg, rgba(40, 57, 88, 0.97) 0%, rgba(36, 52, 80, 0.98) 100%);
}

.auth-panel .tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.auth-panel .tab-button {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  text-align: center;
}

.auth-panel-content {
  display: grid;
  gap: 22px;
}

.auth-panel-content--pricing .card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-panel-content--pricing .kpi {
  min-height: 0;
}

.auth-panel-content--pricing .table-wrap {
  overflow-x: auto;
}

.auth-panel-content--pricing table {
  min-width: 760px;
}

.auth-lead {
  margin: 0 0 18px;
  color: #dbe8fb;
  line-height: 1.65;
}

.auth-panel .field label {
  font-size: .94rem;
}

.auth-panel .field input,
.auth-panel .field select,
.auth-panel .field textarea {
  background: rgba(12, 24, 42, 0.62);
  border-color: rgba(122, 179, 255, 0.24);
}

.legal-content {
  color: #dbe8fb;
  line-height: 1.75;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  color: #f8fbff;
  line-height: 1.2;
}

.legal-content p,
.legal-content li {
  color: #dbe8fb;
}

.legal-content hr {
  border: 0;
  border-top: 1px solid rgba(96, 165, 250, 0.18);
  margin: 18px 0;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
}

.legal-content th,
.legal-content td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(96, 165, 250, 0.14);
}

.legal-content th {
  background: rgba(255,255,255,0.04);
}

.report-preview-frame {
  width: 100%;
  height: 780px;
  margin-top: 16px;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 18px;
  background: #ffffff;
}

.mono {
  font-family: "IBM Plex Mono", monospace;
}

.spacer-top {
  margin-top: 18px;
}

.center {
  text-align: center;
}

.hidden {
  display: none !important;
}

@media (max-width: 1180px) {
  .shell,
  .auth-grid,
  .split,
  .browser-top-grid,
  .browser-bottom-grid {
    grid-template-columns: 1fr;
  }

  .welcome-hero-grid {
    grid-template-columns: 1fr;
  }

  .auth-shell {
    width: min(100%, calc(100vw - 24px));
    padding: 24px 12px 38px;
  }

  .auth-panel {
    position: static;
  }

  .sidebar {
    position: relative;
    height: auto;
  }
}

@media (max-width: 860px) {
  .content {
    padding: 18px;
  }

  .card-grid,
  .filters {
    grid-template-columns: 1fr 1fr;
  }

  .auth-panel .tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid,
  .filters {
    grid-template-columns: 1fr;
  }

  .content-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .hero {
    padding: 22px;
  }

  .hero h2 {
    max-width: none;
    font-size: 2.2rem;
  }

  .auth-hero-logo-frame {
    padding: 12px;
    border-radius: 22px;
  }

  .auth-panel {
    padding: 24px 18px;
  }

  .auth-panel-content--pricing .card-grid,
  .auth-panel .tabs {
    grid-template-columns: 1fr;
  }
}
