:root {
  --black: #0a0a0a;
  --black-soft: #111111;
  --panel: #18181b;
  --line: #27272a;
  --line-strong: rgba(255, 255, 255, 0.18);
  --white: #ffffff;
  --muted: #a1a1aa;
  --muted-strong: #d4d4d8;
  --brand: #7c3aed;
  --brand-start: #4f1dff;
  --brand-end: #a855f7;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  --highlight: #8b5cf6;
  --nav-height: 104px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

body::selection {
  background: var(--brand);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(10, 10, 10, 0.78)),
    rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(18px);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1780px, calc(100% - 112px));
  height: var(--nav-height);
  margin: 0 auto;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
}

.brand-logo-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 156px;
  height: 48px;
  overflow: hidden;
}

.brand-logo-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.15vw, 42px);
}

.nav-menu a {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: var(--white);
  outline: none;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--white);
  color: #141414;
  font-weight: 700;
  padding: 0 22px;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  color: var(--white);
}

.standalone-cta {
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  padding: var(--nav-height) 0 0;
}

.media-placeholder {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 44%, rgba(124, 58, 237, 0.12), transparent 24%),
    linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.media-placeholder::after {
  position: absolute;
  inset: var(--nav-height) 0 auto;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-bg-logo {
  position: absolute;
  top: 18%;
  right: 5%;
  width: min(42vw, 720px);
  height: min(62vh, 620px);
  object-fit: contain;
  object-position: center;
  opacity: 0.3;
  filter: drop-shadow(0 34px 90px rgba(124, 58, 237, 0.14));
}

.hero-content {
  align-self: center;
  width: min(1780px, calc(100% - 112px));
  margin: 0 auto;
  padding: clamp(22px, 5vh, 60px) 0 0;
}

.chapter {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(5.2rem, 12.8vw, 14.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 {
  display: inline-block;
  overflow: visible;
  background: linear-gradient(90deg, var(--brand-start) 0%, var(--brand-end) 100%);
  background-clip: text;
  color: transparent;
  padding-bottom: 0.18em;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  max-width: 760px;
  margin-bottom: 34px;
  color: rgba(245, 245, 240, 0.9);
  font-size: clamp(0.95rem, 1.76vw, 2.22rem);
  font-weight: 200;
  line-height: 1.12;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  padding: 0 22px;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.button.primary {
  background: var(--white);
  color: #111;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: linear-gradient(135deg, var(--brand-start), var(--brand-end));
  color: var(--white);
  outline: none;
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(139, 92, 246, 0.68);
  color: var(--highlight);
  outline: none;
}

.app-body {
  background:
    radial-gradient(circle at 78% 0%, rgba(124, 58, 237, 0.14), transparent 28%),
    var(--black);
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(18px);
}

.app-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1480px, calc(100% - 64px));
  min-height: 82px;
  margin: 0 auto;
  gap: 28px;
}

.cadastro-workspace {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  width: min(1480px, calc(100% - 64px));
  margin: 0 auto;
  gap: 28px;
  padding: 34px 0 88px;
}

.cadastro-sidebar {
  position: sticky;
  top: 106px;
  align-self: start;
}

.cadastro-sidebar-toggle {
  display: none;
}

.cadastro-sidebar-panel {
  min-height: calc(100vh - 140px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(24, 24, 27, 0.72);
  padding: 18px;
}

.sidebar-section-title {
  margin: 0 0 14px;
  color: var(--highlight);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sidebar-menu {
  display: grid;
  gap: 6px;
}

.sidebar-menu-item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--muted-strong);
  cursor: pointer;
  font: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  padding: 0 12px;
  text-align: left;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.sidebar-menu-item:hover,
.sidebar-menu-item:focus-visible {
  border-color: rgba(139, 92, 246, 0.28);
  color: var(--white);
  outline: none;
}

.sidebar-menu-item[aria-current="page"] {
  border-color: rgba(139, 92, 246, 0.32);
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.34), rgba(124, 58, 237, 0.08));
  color: var(--white);
}

.cadastro-main {
  min-width: 0;
}

.connection-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  padding: 16px 18px;
}

.connection-dot {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--muted);
}

.connection-dot[data-status="loading"] {
  background: var(--warning);
  box-shadow: 0 0 22px rgba(245, 158, 11, 0.34);
}

.connection-dot[data-status="ok"] {
  background: var(--success);
  box-shadow: 0 0 22px rgba(34, 197, 94, 0.42);
}

.connection-dot[data-status="error"] {
  background: var(--error);
  box-shadow: 0 0 22px rgba(239, 68, 68, 0.34);
}

.connection-panel strong,
.connection-panel p {
  display: block;
  margin: 0;
}

.connection-panel strong {
  font-size: 0.95rem;
}

.connection-panel p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cadastro-panel {
  min-width: 0;
}

.cadastro-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--panel);
}

.cadastro-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.cadastro-card-header h2 {
  margin: 8px 0 0;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  letter-spacing: 0;
}

.cadastro-card-description {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.table-name,
.record-count {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.table-name {
  margin: 0;
}

.record-count {
  white-space: nowrap;
}

.cadastro-form {
  display: grid;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.cadastro-form label {
  display: grid;
  gap: 8px;
}

.cadastro-form label span {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
}

.cadastro-form input,
.cadastro-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  appearance: none;
  font: inherit;
  outline: none;
  padding: 0 14px;
}

.cadastro-form input:focus,
.cadastro-form select:focus {
  border-color: rgba(139, 92, 246, 0.76);
}

.cadastro-form input::placeholder {
  color: rgba(183, 186, 184, 0.42);
}

.form-note {
  margin: 4px 0 0;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--muted-strong);
  font-size: 0.88rem;
  line-height: 1.45;
  padding: 12px 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-feedback {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.form-feedback[data-type="success"] {
  color: var(--success);
}

.form-feedback[data-type="error"] {
  color: var(--error);
}

.record-list {
  min-width: 0;
  overflow-x: auto;
}

.record-table {
  display: grid;
  min-width: 760px;
}

.record-row {
  display: grid;
  grid-template-columns: var(--record-columns) minmax(160px, auto);
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
}

.record-row:last-child {
  border-bottom: 0;
}

.record-row[data-inactive="true"] {
  opacity: 0.55;
}

.record-row span {
  min-width: 0;
  overflow: hidden;
  color: var(--muted-strong);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.record-row-head {
  min-height: 54px;
  background: rgba(255, 255, 255, 0.035);
}

.record-row-head span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(34, 197, 94, 0.38);
  border-radius: 8px;
  color: #86efac;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0 10px;
}

.status-badge[data-active="false"] {
  border-color: rgba(245, 158, 11, 0.42);
  color: #fbbf24;
}

.record-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.record-actions button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0 11px;
}

.record-actions button:hover:not(:disabled),
.record-actions button:focus-visible:not(:disabled) {
  border-color: rgba(139, 92, 246, 0.68);
  color: var(--highlight);
  outline: none;
}

.record-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.empty-state {
  margin: 0;
  color: var(--muted);
  padding: 20px;
}

.login-body {
  min-height: 100vh;
  overflow-x: hidden;
}

.login-screen {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 28px) 28px 28px;
  isolation: isolate;
}

.login-site-preview {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 44%, rgba(124, 58, 237, 0.15), transparent 24%),
    linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
}

.login-site-preview::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.54)),
    radial-gradient(circle at 50% 45%, rgba(10, 10, 10, 0.12), rgba(10, 10, 10, 0.52) 74%);
  content: "";
}

.login-preview-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1780px, calc(100% - 112px));
  height: var(--nav-height);
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.login-preview-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--white);
  color: #141414;
  font-weight: 700;
  padding: 0 22px;
}

.login-preview-hero {
  position: absolute;
  inset: var(--nav-height) 0 0;
  z-index: 0;
  overflow: hidden;
}

.login-preview-bg-logo {
  position: absolute;
  top: 10%;
  right: 7%;
  width: min(43vw, 760px);
  height: min(72vh, 720px);
  object-fit: contain;
  object-position: center;
  opacity: 0.3;
  filter: drop-shadow(0 0 72px rgba(124, 58, 237, 0.22));
}

.login-preview-content {
  position: absolute;
  left: clamp(32px, 4.6vw, 88px);
  bottom: clamp(74px, 17vh, 190px);
  z-index: 2;
  max-width: min(48vw, 880px);
}

.login-preview-content strong {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0 0 28px;
  background: linear-gradient(100deg, var(--brand-start) 0%, var(--brand-end) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(7rem, 13vw, 15rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.82;
  overflow: visible;
}

.login-preview-content p {
  max-width: 860px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.35rem, 2.1vw, 2.7rem);
  font-weight: 200;
  letter-spacing: 0;
  line-height: 1.18;
}

.login-card {
  position: relative;
  z-index: 3;
  width: min(100%, 340px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(24, 24, 27, 0.42);
  box-shadow: 12px 16px 0 rgba(0, 0, 0, 0.3), 0 34px 110px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(24px);
  padding: 24px;
  transform: translate(8vw, -2vh);
}

.login-logo {
  display: inline-flex;
  width: 96px;
  height: 30px;
  margin-bottom: 20px;
}

.login-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.login-heading h1 {
  margin: 0;
  color: var(--white);
  font-size: 3rem;
  line-height: 0.95;
}

.login-heading p {
  margin: 8px 0 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
}

.login-form {
  display: grid;
  gap: 11px;
}

.login-form label {
  display: grid;
  gap: 8px;
}

.login-form label span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
}

.login-form input[type="text"],
.login-form input[type="password"] {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 13px;
  background: rgba(10, 10, 10, 0.22);
  color: var(--white);
  font: inherit;
  font-size: 0.8rem;
  outline: none;
  padding: 0 12px;
}

.login-form input:focus {
  border-color: rgba(168, 85, 247, 0.88);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.18);
}

.login-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.remember-control {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 8px !important;
  margin: 1px 0 8px;
}

.remember-control input {
  width: 14px;
  height: 14px;
  accent-color: var(--brand);
}

.login-submit {
  width: 100%;
  min-height: 42px;
  margin-top: 2px;
  font-size: 0.84rem;
}

.login-feedback {
  min-height: 18px;
  margin: 0;
  color: var(--error);
  font-size: 0.78rem;
  line-height: 1.4;
}

.login-feedback[data-type="muted"] {
  color: var(--muted-strong);
}

.login-feedback[data-type="warning"] {
  color: var(--warning);
}

.placeholder-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
}

.placeholder-page img {
  width: 170px;
  height: auto;
}

.placeholder-page h1 {
  margin: 20px 0 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
}

.placeholder-page p {
  max-width: 520px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  :root {
    --nav-height: 86px;
  }

  .top-nav,
  .app-nav,
  .hero-content,
  .cadastro-workspace {
    width: min(100% - 40px, 1780px);
  }

  .brand {
    min-width: auto;
  }

  .brand-logo-box {
    width: 124px;
    height: 38px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(var(--nav-height) - 8px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    background: rgba(16, 18, 17, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.44);
    padding: 8px;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    border-radius: 12px;
    padding: 0 14px;
  }

  .nav-menu .nav-cta {
    margin-top: 6px;
    min-height: 48px;
  }

  .hero-bg-logo {
    top: 20%;
    right: -2%;
    width: min(58vw, 620px);
    height: min(56vh, 520px);
  }

  .cadastro-workspace {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cadastro-sidebar {
    position: static;
  }

  .cadastro-sidebar-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 76px;
  }

  .top-nav,
  .app-nav,
  .hero-content,
  .cadastro-workspace {
    width: min(100% - 28px, 1780px);
  }

  .brand-logo-box {
    width: 118px;
    height: 36px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 0 42px;
  }

  .chapter {
    margin-bottom: 16px;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 6.8rem);
  }

  .hero-subtitle {
    font-size: clamp(1rem, 5.6vw, 1.6rem);
    font-weight: 200;
    line-height: 1.12;
  }

  .button {
    width: 100%;
  }

  .standalone-cta {
    min-height: 42px;
    font-size: 0.88rem;
    padding: 0 16px;
  }

  .hero-bg-logo {
    top: 18%;
    right: -34%;
    width: 110vw;
    height: 46vh;
    opacity: 0.24;
  }

  .app-nav {
    min-height: 76px;
  }

  .cadastro-workspace {
    gap: 14px;
    padding: 24px 0 64px;
  }

  .cadastro-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 0 14px;
  }

  .cadastro-sidebar-toggle::after {
    color: var(--highlight);
    content: "+";
    font-size: 1.2rem;
  }

  .cadastro-sidebar-toggle[aria-expanded="true"]::after {
    content: "-";
  }

  .cadastro-sidebar-panel {
    display: none;
    margin-top: 10px;
  }

  .cadastro-sidebar-panel.is-open {
    display: block;
  }

  .cadastro-card-header {
    display: grid;
    padding: 18px;
  }

  .cadastro-form {
    padding: 18px;
  }

  .record-table {
    min-width: 680px;
  }

  .record-row {
    padding: 14px 16px;
  }

  .record-actions {
    align-items: stretch;
  }

  .record-actions button,
  .form-actions .button {
    flex: 1;
  }

  .login-screen {
    padding: calc(var(--nav-height) + 18px) 20px 20px;
  }

  .login-card {
    width: min(100%, 340px);
    border-radius: 20px;
    padding: 22px;
    transform: none;
  }

  .login-logo {
    width: 92px;
    height: 29px;
    margin-bottom: 18px;
  }

  .login-heading h1 {
    font-size: 2.7rem;
  }

  .login-preview-header {
    width: calc(100% - 40px);
    height: 86px;
  }

  .login-preview-header .brand-logo-box {
    width: 126px;
    height: 39px;
  }

  .login-preview-cta {
    display: none;
  }

  .login-preview-bg-logo {
    top: 18%;
    right: -36%;
    width: 92vw;
    height: 58vh;
    opacity: 0.22;
  }

  .login-preview-content {
    left: 22px;
    right: 22px;
    bottom: 44px;
    max-width: none;
    opacity: 0.48;
  }

  .login-preview-content strong {
    font-size: clamp(4.6rem, 25vw, 7.4rem);
    margin-bottom: 16px;
  }

  .login-preview-content p {
    font-size: 1.18rem;
  }
}
