/* Auth shell styles — mirror new_login_design.html. Loaded via CSS import
   from AuthShell.tsx so all .auth-* class rules are guaranteed-applied. */

.auth-page {
  --violet: #7C3AED;
  --violet-dk: #5B21B6;
  --violet-lt: #A78BFA;
  --violet-50: #F5F3FF;
  --violet-100: #EDE9FE;
  --navy: #0D1B2A;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --bg: #F4F6F9;
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
}

.auth-bg-wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, var(--violet-50) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(237, 233, 254, 0.67) 0%, transparent 50%);
  pointer-events: none;
}
.auth-bg-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

/* Animated plumb-bob dots */
.auth-plumb-track {
  position: absolute;
  top: 17.7%; bottom: 17.7%;
  pointer-events: none;
}
.auth-plumb-track--left  { left: 11.6%; width: 11px; }
.auth-plumb-track--right { left: 87.7%; width: 9px; }
.auth-plumb-bob {
  position: absolute;
  border-radius: 50%;
}
.auth-plumb-bob--left {
  left: 0; top: 70%;
  width: 11px; height: 11px;
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(124,58,237,.15), 0 0 22px rgba(124,58,237,.33);
  animation: auth-plumb-1 6s ease-in-out infinite;
}
.auth-plumb-bob--right {
  left: 0; top: 55%;
  width: 9px; height: 9px;
  background: var(--violet-lt);
  box-shadow: 0 0 0 3px rgba(124,58,237,.15), 0 0 16px rgba(124,58,237,.33);
  animation: auth-plumb-2 7s ease-in-out infinite;
}
@keyframes auth-plumb-1 {
  0%, 100% { transform: translateX(-3px); }
  50%      { transform: translateX(3px); }
}
@keyframes auth-plumb-2 {
  0%, 100% { transform: translateX(2px); }
  50%      { transform: translateX(-2px); }
}

/* Logo breathing — used by the inline plumb-bob mark in the card head */
.auth-mark-wrap { position: relative; display: inline-block; }
.auth-mark-glow {
  position: absolute; inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.20) 0%, rgba(124,58,237,0) 60%);
  animation: auth-mark-breathe 3.6s ease-in-out infinite;
  pointer-events: none;
}
.auth-mark-pulse {
  display: inline-block;
  animation: auth-mark-pulse 3.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes auth-mark-breathe {
  0%, 100% { transform: scale(0.85); opacity: 0.9; }
  50%      { transform: scale(1.15); opacity: 0.4; }
}
@keyframes auth-mark-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.04); }
}

/* Top nav — bg sólida na mesma cor da página pra header não destoar do
   restante. Hairline divider mantém a separação do corpo decorado. */
.auth-nav {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 5;
  background: #F4F6F9;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.auth-lockup {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: inherit;
}
.auth-lockup-text {
  display: flex; flex-direction: column;
  line-height: 1; gap: 2px;
}
.auth-lockup-name {
  font-size: 17.4px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--navy);
}
.auth-lockup-name span:first-child { font-weight: 500; }
.auth-lockup-name span:last-child  { font-weight: 800; }
.auth-lockup-sub {
  font-size: 7.6px; color: var(--slate-500);
  font-weight: 500; letter-spacing: 0.02em;
}
/* Nav links + CTA — design v3 values. */
.auth-nav-links {
  display: flex; align-items: center; gap: 32px;
  font-size: 14px; font-weight: 500; color: #374151;
}
.auth-nav-links a {
  color: inherit; text-decoration: none;
  transition: color .15s;
}
.auth-nav-links a:hover {
  color: var(--navy);
}
/* a.auth-nav-cta — especificidade extra (class + tag) pra ganhar de
   `.auth-nav-links a { color: inherit }` que estava roubando a cor. */
a.auth-nav-cta {
  color: var(--navy); font-weight: 600; font-size: 13.5px;
  padding: 9px 16px; border-radius: 10px;
  border: 1px solid #E5E7EB;
  background: white;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
a.auth-nav-cta:hover {
  border-color: #C4B5FD;
  color: var(--violet);
}

/* Center card — matches design HTML. Wrap is click-transparent so nav and
   bottom-strip below it stay reachable; only the card itself catches events. */
.auth-card-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
  z-index: 10;
  pointer-events: none;
}
.auth-card {
  position: relative;
  width: 460px; max-width: 100%;
  padding: 30px 44px 26px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  box-shadow:
    0 40px 80px -24px rgba(15,23,42,.18),
    0 12px 32px -16px rgba(124,58,237,.18),
    0 0 0 1px rgba(255,255,255,.7) inset;
  color: var(--navy);
  pointer-events: auto;
}
.auth-card-accent {
  position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--violet), transparent);
  border-radius: 999px;
}

.auth-card-head {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  margin-bottom: 22px;
}
.auth-card-name {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--navy);
  text-align: center;
}
.auth-card-name span:first-child { font-weight: 500; }
.auth-card-name span:last-child  { font-weight: 800; }
.auth-card-sub {
  font-size: 11px; color: var(--slate-500);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 4px; text-align: center;
}

.auth-title {
  margin: 0; font-size: 24px; font-weight: 700;
  text-align: center; letter-spacing: -0.02em; color: var(--navy);
}
.auth-lede {
  margin: 6px 0 20px;
  font-size: 13px; color: var(--slate-500); text-align: center;
}

/* Form primitives */
.auth-form { display: flex; flex-direction: column; gap: 14px; }

.auth-social-row { display: flex; gap: 8px; }
.auth-social-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 0;
  border-radius: 10px;
  background: white;
  border: 1.5px solid var(--slate-200);
  color: var(--navy);
  font-family: inherit;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.auth-social-btn:hover { border-color: var(--slate-400); background: var(--slate-50); }

.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 4px 0;
}
.auth-divider-line { flex: 1; height: 1px; background: var(--slate-200); }
.auth-divider-label {
  font-size: 11px; color: var(--slate-500);
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}

.auth-field { display: flex; flex-direction: column; gap: 6px; }
.auth-field-label {
  font-size: 12px; font-weight: 600; color: var(--navy);
}
.auth-input-wrap {
  display: flex; align-items: center;
  background: white;
  border: 1.5px solid var(--slate-200);
  border-radius: 10px;
  transition: border-color .15s, box-shadow .15s;
}
.auth-input-wrap:focus-within {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(124,58,237,.20);
}
.auth-input {
  flex: 1;
  border: none; outline: none;
  padding: 11px 14px;
  background: transparent; color: var(--navy);
  font-size: 14px; font-family: inherit;
  border-radius: 10px;
}
.auth-input--select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.auth-input-icon {
  padding: 0 12px 0 0;
  color: var(--slate-500);
  display: flex; background: none; border: none;
  cursor: pointer;
}
.auth-field-error {
  font-size: 11px; color: #DC2626; font-weight: 500;
}
.auth-field-hint {
  font-size: 10.5px; color: var(--slate-400);
  font-weight: 400; text-transform: none; letter-spacing: 0;
}

.auth-form-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--slate-700);
}
.auth-check-label {
  display: flex; align-items: center; gap: 8px; cursor: pointer;
}
.auth-check-box {
  width: 16px; height: 16px; border-radius: 4px;
  background: var(--violet);
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.auth-form-row a { color: var(--violet); font-weight: 600; text-decoration: none; }

.auth-form-error {
  font-size: 12.5px; color: #B91C1C;
  background: #FEF2F2; border: 1px solid #FECACA;
  border-radius: 8px; padding: 8px 12px;
}

.auth-submit {
  width: 100%; padding: 14px 20px; border-radius: 10px;
  background: var(--violet); color: white;
  font-family: inherit;
  font-size: 15px; font-weight: 700; letter-spacing: -0.005em;
  border: none;
  cursor: pointer;
  box-shadow:
    0 6px 16px -4px rgba(124,58,237,.4),
    0 0 0 1px rgba(91,33,182,.25) inset;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: transform .1s, box-shadow .15s, opacity .15s;
}
.auth-submit:hover { box-shadow: 0 8px 20px -4px rgba(124,58,237,.5), 0 0 0 1px rgba(91,33,182,.25) inset; }
.auth-submit:active { transform: translateY(1px); }
.auth-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.auth-submit-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-bottom-color: transparent;
  border-radius: 50%;
  animation: auth-submit-spin 0.7s linear infinite;
}
@keyframes auth-submit-spin { to { transform: rotate(360deg); } }

/* Card footer */
.auth-card-foot {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--slate-100);
  display: flex; align-items: center; justify-content: space-between;
}
.auth-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.auth-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--slate-500); font-weight: 500;
  letter-spacing: 0.02em;
}
.auth-badge svg { color: var(--violet); }
.auth-version { font-size: 11px; color: var(--slate-400); }

/* Bottom CTA strip */
.auth-bottom-strip {
  position: absolute; bottom: 24px; left: 0; right: 0;
  text-align: center; font-size: 12px; color: var(--slate-500);
  z-index: 5;
}
.auth-bottom-strip a {
  color: var(--violet); font-weight: 700; text-decoration: none;
  cursor: pointer;
  transition: color .15s;
}
.auth-bottom-strip a:hover { color: var(--violet-dk); text-decoration: underline; }

@media (max-width: 720px) {
  .auth-nav { padding: 18px 20px; }
  .auth-nav-links { gap: 14px; font-size: 12px; }
  .auth-nav-links a:not(.auth-nav-cta) { display: none; }
  .auth-card { padding: 32px 24px 28px; }
  .auth-card-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* latin-ext */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/98848575513c9742-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/7b0b24f36b1a6d0b-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/98848575513c9742-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/7b0b24f36b1a6d0b-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/98848575513c9742-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/7b0b24f36b1a6d0b-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/98848575513c9742-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/7b0b24f36b1a6d0b-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/98848575513c9742-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/7b0b24f36b1a6d0b-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/98848575513c9742-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Outfit_237716';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(/_next/static/media/7b0b24f36b1a6d0b-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__Outfit_Fallback_237716';src: local("Arial");ascent-override: 100.18%;descent-override: 26.05%;line-gap-override: 0.00%;size-adjust: 99.82%
}.__className_237716 {font-family: '__Outfit_237716', '__Outfit_Fallback_237716';font-style: normal
}

