@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url('/vendor/fontsource/urbanist/files/urbanist-latin-400-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url('/vendor/fontsource/urbanist/files/urbanist-latin-600-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-display: swap;
  font-weight: 700;
  src: url('/vendor/fontsource/urbanist/files/urbanist-latin-700-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Urbanist';
  font-style: normal;
  font-display: swap;
  font-weight: 800;
  src: url('/vendor/fontsource/urbanist/files/urbanist-latin-800-normal.woff2') format('woff2');
}

:root {
  --vm-blue: #0757c8;
  --vm-blue-dark: #063b91;
  --vm-blue-deep: #042f7c;
  --vm-blue-soft: #eaf3ff;
  --vm-green: #35b24a;
  --vm-green-dark: #188331;
  --vm-text: #102033;
  --vm-muted: #64748b;
  --vm-border: rgba(15, 23, 42, 0.11);
  --vm-card: rgba(255, 255, 255, 0.97);
  --vm-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

button,
input {
  font: inherit;
}

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.auth-body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family:
    'Urbanist',
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  background:
    radial-gradient(
      circle at 8% 78%,
      rgba(34, 197, 94, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 18%,
      rgba(37, 99, 235, 0.35),
      transparent 36%
    ),
    linear-gradient(135deg, #06111f 0%, #0b1b33 48%, #123f82 100%);
  color: var(--vm-text);
}

.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(520px, 1.05fr);
}

/* PAINEL DA MARCA */

.auth-brand-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 56px 72px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 16% 20%,
      rgba(34, 197, 94, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 12%,
      rgba(37, 99, 235, 0.24),
      transparent 32%
    ),
    linear-gradient(135deg, #06111f 0%, #0b1b33 48%, #123f82 100%);
  color: #fff;
}

.auth-brand-panel::before,
.auth-brand-panel::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.auth-brand-panel::before {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -95px;
  background: rgba(53, 178, 74, 0.18);
}

.auth-brand-panel::after {
  width: 230px;
  height: 230px;
  left: -75px;
  bottom: -75px;
  background: rgba(255, 255, 255, 0.13);
}

.auth-brand-content {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
}

.auth-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 42px;
  padding: 10px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.auth-logo-img {
  display: block;
  max-width: 230px;
  height: auto;
  object-fit: contain;
}

.auth-brand-copy {
  max-width: 590px;
}

.auth-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.auth-pill svg {
  width: 16px;
  height: 16px;
  color: #8df5a0;
}

.auth-brand-copy h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.auth-brand-copy p {
  max-width: 540px;
  margin: 26px 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
}

.auth-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-top: 42px;
}

.auth-feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.auth-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  color: #78f28e;
}

.auth-feature-icon svg {
  width: 23px;
  height: 23px;
}

.auth-feature-card strong {
  display: block;
  font-size: 1rem;
  color: #fff;
}

.auth-feature-card span:not(.auth-feature-icon) {
  display: block;
  margin-top: 3px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.76);
}

/* PAINEL DO FORMULÁRIO */

.auth-form-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 72px;
}

.auth-form-panel::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  top: 50%;
  left: 50%;
  border-radius: 999px;
  background: rgba(7, 87, 200, 0.08);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 46px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  background: var(--vm-card);
  box-shadow: var(--vm-shadow);
  backdrop-filter: blur(18px);
}

.auth-card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.auth-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--vm-blue), var(--vm-green));
  color: #fff;
  box-shadow: 0 18px 36px rgba(7, 87, 200, 0.26);
}

.auth-card-icon svg {
  width: 30px;
  height: 30px;
}

.auth-card-header h2 {
  margin: 0;
  color: var(--vm-text);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.auth-card-header p {
  margin: 6px 0 0;
  color: var(--vm-muted);
  font-size: 1rem;
  line-height: 1.45;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.auth-google-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  margin-bottom: 20px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 18px;
  background: #fff;
  color: #1e293b;
  font-size: 1rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.auth-google-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.auth-google-button:hover {
  border-color: rgba(7, 87, 200, 0.28);
  color: var(--vm-blue);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.09);
  transform: translateY(-1px);
}

.auth-google-button.is-disabled {
  opacity: 0.72;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: #64748b;
  font-size: 0.86rem;
  font-weight: 750;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: rgba(15, 23, 42, 0.1);
}

.auth-divider span {
  white-space: nowrap;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.auth-field label,
.auth-label-row label {
  margin: 0;
  color: #334155;
  font-size: 0.94rem;
  font-weight: 800;
}

.auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.auth-label-row a,
.auth-register-text a {
  color: var(--vm-blue);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.auth-label-row a:hover,
.auth-register-text a:hover {
  color: var(--vm-green-dark);
  text-decoration: underline;
}

/* INPUTS SEM BOOTSTRAP */

.auth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.auth-input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--vm-blue);
  transform: translateY(-50%);
  pointer-events: none;
}

.auth-input-icon svg {
  width: 20px;
  height: 20px;
}

.auth-input-wrap input {
  display: block;
  width: 100%;
  height: 60px;
  min-height: 60px;
  padding: 0 58px 0 54px;
  border: 1px solid var(--vm-border);
  border-radius: 18px;
  outline: none;
  background: #fff;
  color: var(--vm-text);
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.055);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.auth-input-wrap input::placeholder {
  color: #94a3b8;
  opacity: 1;
  font-weight: 450;
}

.auth-input-wrap input:focus {
  border-color: rgba(7, 87, 200, 0.62);
  box-shadow:
    0 0 0 4px rgba(7, 87, 200, 0.12),
    0 16px 32px rgba(15, 23, 42, 0.09);
  transform: translateY(-1px);
}

.auth-password-toggle {
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 15px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.auth-password-toggle svg {
  width: 20px;
  height: 20px;
}

.auth-password-toggle:hover {
  background: var(--vm-blue-soft);
  color: var(--vm-blue);
}

.auth-password-toggle .icon-eye-off {
  display: none;
}

.auth-password-toggle.is-visible .icon-eye {
  display: none;
}

.auth-password-toggle.is-visible .icon-eye-off {
  display: block;
}

/* BOTÃO E RODAPÉ */

.auth-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 60px;
  margin-top: 8px;
  border: 0;
  border-radius: 19px;
  background: linear-gradient(135deg, var(--vm-blue), var(--vm-green));
  color: #fff;
  font-size: 1.04rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 20px 38px rgba(7, 87, 200, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.auth-submit svg {
  width: 20px;
  height: 20px;
}

.auth-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 24px 46px rgba(7, 87, 200, 0.36);
}

.auth-submit:active {
  transform: translateY(0);
}

.auth-trial-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(7, 87, 200, 0.14);
  border-radius: 18px;
  background: rgba(239, 246, 255, 0.72);
}

.auth-trial-products-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.auth-trial-products-header strong {
  color: #1e293b;
  font-size: 0.98rem;
  font-weight: 900;
}

.auth-trial-products-header span {
  color: var(--vm-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.auth-trial-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.auth-trial-product-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0.66rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 14px;
  background: #fff;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
}

.auth-trial-product-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--vm-blue);
}

.auth-register-text {
  margin: 32px 0 0;
  color: var(--vm-muted);
  text-align: center;
  font-size: 0.98rem;
}

.auth-footer-note {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  margin: 20px auto 0;
  color: rgba(203, 213, 225, 0.62);
  text-align: center;
  font-size: 0.86rem;
}

/* RESPONSIVO */

@media (max-width: 1200px) {
  .auth-page {
    grid-template-columns: 1fr 1fr;
  }

  .auth-brand-panel {
    padding: 48px;
  }

  .auth-form-panel {
    padding: 42px;
  }

  .auth-brand-copy h1 {
    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 1.05;
  }
}

@media (max-width: 992px) {
  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    justify-content: center;
    min-height: auto;
    padding: 36px 24px 34px;
  }

  .auth-brand-content {
    width: min(100%, 720px);
  }

  .auth-logo-link {
    margin-bottom: 28px;
  }

  .auth-logo-img {
    max-width: 210px;
  }

  .auth-brand-copy h1 {
    max-width: 680px;
    font-size: clamp(2.3rem, 9vw, 3.7rem);
    line-height: 1.05;
  }

  .auth-brand-copy p {
    max-width: 660px;
    font-size: 1rem;
  }

  .auth-feature-grid {
    max-width: 680px;
    margin-top: 28px;
  }

  .auth-form-panel {
    padding: 34px 18px 40px;
  }

  .auth-form-panel::before {
    width: 360px;
    height: 360px;
  }

  .auth-card {
    padding: 34px 26px;
    border-radius: 28px;
  }
}

@media (max-width: 576px) {
  .auth-brand-panel {
    padding: 28px 18px;
  }

  .auth-logo-link {
    padding: 8px 12px;
    border-radius: 18px;
  }

  .auth-logo-img {
    max-width: 180px;
  }

  .auth-pill {
    font-size: 0.78rem;
  }

  .auth-brand-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 1.06;
    letter-spacing: -0.055em;
  }

  .auth-feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .auth-feature-card {
    min-height: auto;
    padding: 14px;
    border-radius: 18px;
  }

  .auth-card {
    padding: 28px 20px;
  }

  .auth-card-header {
    align-items: flex-start;
    gap: 14px;
  }

  .auth-card-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    border-radius: 18px;
  }

  .auth-card-icon svg {
    width: 25px;
    height: 25px;
  }

  .auth-card-header h2 {
    font-size: 1.55rem;
  }

  .auth-card-header p {
    font-size: 1.02rem;
  }

  .auth-label-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .auth-input-wrap input {
    height: 54px;
    min-height: 54px;
    padding-left: 52px;
    padding-right: 54px;
    border-radius: 16px;
  }

  .auth-input-icon {
    left: 17px;
  }

  .auth-password-toggle {
    right: 8px;
    width: 40px;
    height: 40px;
  }

  .auth-submit {
    min-height: 56px;
    border-radius: 16px;
  }

  .auth-divider {
    gap: 10px;
    font-size: 0.78rem;
  }
}

/* =========================================================
   CADASTRO - COMPLEMENTO VISUAL
========================================================= */

.auth-page-register .auth-form-panel {
  padding-top: 34px;
  padding-bottom: 34px;
}

.auth-card-register {
  width: min(100%, 620px);
  padding: 38px;
}

.auth-card-register .auth-card-header {
  margin-bottom: 28px;
}

.auth-card-register .auth-form {
  gap: 18px;
}

.auth-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.auth-note {
  display: block;
  margin-top: -8px;
  color: var(--vm-muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.auth-note.is-valid {
  color: var(--vm-green-dark);
  font-weight: 700;
}

.auth-note.is-invalid {
  color: #dc2626;
  font-weight: 700;
}

.auth-field-check {
  margin-top: 4px;
}

.auth-check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--vm-muted);
  line-height: 1.42;
}

.auth-check-label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--vm-blue, #1d4ed8);
  cursor: pointer;
}

.auth-check-label a {
  color: var(--vm-blue, #1d4ed8);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 2px;
}

.auth-section-title span {
  color: #334155;
  font-size: 0.94rem;
  font-weight: 850;
}

.auth-section-title small {
  color: var(--vm-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.auth-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.auth-product-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96),
    rgba(248, 251, 255, 0.96)
  );
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    background 0.2s ease;
}

.auth-product-option:hover {
  border-color: rgba(7, 87, 200, 0.32);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.auth-product-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-product-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-top: 1px;
  border: 1px solid rgba(7, 87, 200, 0.24);
  border-radius: 9px;
  background: #fff;
  color: transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.auth-product-check svg {
  width: 17px;
  height: 17px;
}

.auth-product-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.auth-product-content strong {
  color: var(--vm-text);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
}

.auth-product-content small {
  margin-top: 4px;
  color: var(--vm-muted);
  font-size: 0.76rem;
  line-height: 1.25;
}

.auth-product-option:has(input:checked) {
  border-color: rgba(53, 178, 74, 0.56);
  background:
    linear-gradient(135deg, rgba(7, 87, 200, 0.08), rgba(53, 178, 74, 0.12)),
    #fff;
  box-shadow: 0 18px 36px rgba(7, 87, 200, 0.12);
}

.auth-product-option:has(input:checked) .auth-product-check {
  border-color: var(--vm-green);
  background: linear-gradient(135deg, var(--vm-blue), var(--vm-green));
  color: #fff;
}

.auth-product-option:has(input:focus-visible) {
  outline: 4px solid rgba(7, 87, 200, 0.14);
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  .auth-card-register {
    width: min(100%, 580px);
    padding: 34px;
  }

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

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

@media (max-width: 992px) {
  .auth-page-register .auth-form-panel {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .auth-card-register {
    width: min(100%, 640px);
  }
}

@media (max-width: 576px) {
  .auth-card-register {
    padding: 28px 20px;
  }

  .auth-form-row {
    grid-template-columns: 1fr;
  }

  .auth-product-grid {
    grid-template-columns: 1fr;
  }

  .auth-trial-products-grid {
    grid-template-columns: 1fr;
  }

  .auth-section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

/* =========================================================
   RECUPERAR SENHA - COMPLEMENTO VISUAL
========================================================= */

.auth-local-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(7, 87, 200, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(7, 87, 200, 0.08), rgba(53, 178, 74, 0.08)),
    #ffffff;
  color: var(--vm-text);
  font-size: 0.9rem;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

.auth-local-preview strong {
  color: var(--vm-blue);
  font-weight: 850;
}

.auth-local-preview span {
  color: var(--vm-muted);
}

.auth-local-preview a {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--vm-green-dark);
  font-weight: 800;
  text-decoration: none;
}

.auth-local-preview a:hover {
  color: var(--vm-blue);
  text-decoration: underline;
}

/* =========================================================
   REDEFINIR SENHA - COMPLEMENTO VISUAL
========================================================= */

.auth-card-icon-danger {
  background: linear-gradient(135deg, #dc2626, #f97316);
  box-shadow: 0 18px 36px rgba(220, 38, 38, 0.22);
}

.auth-empty-state {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-empty-state p {
  margin: 0;
  color: var(--vm-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.auth-link-button {
  text-decoration: none;
}

.auth-link-button:hover {
  color: #fff;
}
