/* AccounTrack auth screens (login / register) — matches design mockup */

.at-auth *,
.at-auth *::before,
.at-auth *::after {
  box-sizing: border-box;
}

.at-auth {
  --at-ink: #0f1117;
  --at-ink2: #374151;
  --at-ink3: #6b7280;
  --at-ink4: #9ca3af;
  --at-surface: #ffffff;
  --at-surface2: #f8f9fb;
  --at-surface3: #f1f3f7;
  --at-border: #e5e8ef;
  --at-border2: #d1d5db;
  --at-accent: #0080ff;
  --at-accent2: #006ae6;
  --at-accent-light: #e8f4ff;
  --at-accent-pale: #cce8ff;
  --at-green: #059669;
  --at-green-light: #ecfdf5;
  --at-red: #dc2626;
  --at-red-light: #fef2f2;
  --at-amber: #d97706;
  --at-amber-light: #fffbeb;
  --at-purple: #7c3aed;
  --at-purple-light: #f5f3ff;
  --at-teal: #0d9488;
  --at-teal-light: #f0fdfa;
  --at-r: 10px;
  --at-r-lg: 16px;
  --at-font: 'Sora', system-ui, sans-serif;
  --at-mono: 'DM Mono', ui-monospace, monospace;

  font-family: var(--at-font);
  background: var(--at-surface2);
  color: var(--at-ink);
  min-height: 100svh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.at-auth .top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--at-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 28px;
  height: 60px;
}

/* Language switcher: full styles (dashboard.css only targets .dash-app, so auth needs its own) */
.at-auth .top-nav .lang-switcher.dt-select-wrap,
.at-auth .auth-lang-corner .lang-switcher.dt-select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  z-index: 1;
}

.at-auth .top-nav .lang-switcher .dt-select,
.at-auth .auth-lang-corner .lang-switcher .dt-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 128px;
  height: 36px;
  padding: 0 34px 0 12px;
  border: 1px solid var(--at-border2);
  border-radius: 8px;
  font-family: var(--at-font);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--at-ink2);
  background: var(--at-surface);
  cursor: pointer;
  transition: border-color 0.15s;
}

.at-auth .top-nav .lang-switcher .dt-select:hover,
.at-auth .auth-lang-corner .lang-switcher .dt-select:hover,
.at-auth .top-nav .lang-switcher .dt-select:focus,
.at-auth .auth-lang-corner .lang-switcher .dt-select:focus {
  border-color: var(--at-accent);
  outline: none;
}

.at-auth .top-nav .lang-switcher .dt-select__chev,
.at-auth .auth-lang-corner .lang-switcher .dt-select__chev {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
  color: var(--at-ink4);
}

.at-auth .top-nav .lang-switcher .dt-select__chev svg,
.at-auth .auth-lang-corner .lang-switcher .dt-select__chev svg {
  width: 16px;
  height: 16px;
}

.at-auth .top-nav .lang-switcher.lang-switcher--custom .dt-select,
.at-auth .auth-lang-corner .lang-switcher.lang-switcher--custom .dt-select {
  width: 100%;
  min-width: 180px;
  height: auto;
  min-height: 36px;
  padding: 4px 34px 4px 10px;
  text-align: left;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

.at-auth .top-nav .lang-switcher.lang-switcher--custom .dt-select__chev svg,
.at-auth .auth-lang-corner .lang-switcher.lang-switcher--custom .dt-select__chev svg {
  transition: transform 0.15s ease;
}

.at-auth .top-nav .lang-switcher.lang-switcher--custom .dt-select__chev.is-open svg,
.at-auth .auth-lang-corner .lang-switcher.lang-switcher--custom .dt-select__chev.is-open svg {
  transform: rotate(180deg);
}

.at-auth .top-nav .lang-switcher .lang-switcher__flag,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__flag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.1);
}

.at-auth .top-nav .lang-switcher .lang-switcher__flag-svg,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__flag-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.at-auth .top-nav .lang-switcher .lang-switcher__trigger-text,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__trigger-text,
.at-auth .top-nav .lang-switcher .lang-switcher__option-text,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__option-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  min-width: 0;
  flex: 1 1 auto;
  text-align: left;
}

.at-auth .top-nav .lang-switcher .lang-switcher__lang,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__lang {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  color: inherit;
}

.at-auth .top-nav .lang-switcher .lang-switcher__country,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__country {
  font-size: 11px;
  font-weight: 500;
  color: var(--at-ink4);
  line-height: 1.2;
}

.at-auth .top-nav .lang-switcher .lang-switcher__country--compact,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__country--compact {
  font-size: 10px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.at-auth .top-nav .lang-switcher .lang-switcher__menu:not(.lang-switcher__menu--fixed),
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__menu:not(.lang-switcher__menu--fixed) {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 200;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid var(--at-border2);
  border-radius: 8px;
  background: var(--at-surface);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  scrollbar-width: thin;
  scrollbar-color: var(--at-border2) transparent;
}

.at-auth .top-nav .lang-switcher .lang-switcher__menu::-webkit-scrollbar,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__menu::-webkit-scrollbar {
  width: 8px;
}

.at-auth .top-nav .lang-switcher .lang-switcher__menu::-webkit-scrollbar-thumb,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__menu::-webkit-scrollbar-thumb {
  background: var(--at-border2);
  border-radius: 4px;
}

.at-auth .top-nav .lang-switcher .lang-switcher__option,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
  padding: 8px 12px;
  border: none;
  border-radius: 0;
  font: inherit;
  line-height: 1.2;
  text-align: left;
  color: var(--at-ink2);
  background: transparent;
  cursor: pointer;
  user-select: none;
}

.at-auth .top-nav .lang-switcher .lang-switcher__option:hover,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__option:hover,
.at-auth .top-nav .lang-switcher .lang-switcher__option:focus-visible,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__option:focus-visible {
  background: rgba(15, 23, 42, 0.06);
  outline: none;
}

.at-auth .top-nav .lang-switcher .lang-switcher__option.is-selected .lang-switcher__lang,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__option.is-selected .lang-switcher__lang {
  color: var(--at-accent);
  font-weight: 600;
}

.at-auth .top-nav .lang-switcher .lang-switcher__option.is-selected .lang-switcher__country,
.at-auth .auth-lang-corner .lang-switcher .lang-switcher__option.is-selected .lang-switcher__country {
  color: var(--at-accent);
  opacity: 0.88;
}

.at-auth .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
  flex: 1;
}

.at-auth .logo.logo--image-only {
  flex: 0 1 auto;
}

.at-auth .logo-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--at-accent), var(--at-accent2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.at-auth .logo-icon.logo-icon--image {
  background: transparent;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 40px;
  max-height: 48px;
  border-radius: 0;
  padding: 0;
}

.at-auth .logo-icon.logo-icon--image img {
  display: block;
  max-height: 48px;
  width: auto;
  max-width: min(220px, 44vw);
  object-fit: contain;
}

.at-auth .logo-icon svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.at-auth .logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--at-ink);
  letter-spacing: -0.3px;
}

.at-auth .logo-text span {
  color: var(--at-accent);
}

.at-auth .auth-screen {
  padding-top: 60px;
  min-height: 100vh;
}

.at-auth.at-auth--centered .auth-screen {
  padding-top: 0;
  min-height: 100vh;
  position: relative;
}

.at-auth.at-auth--centered .auth-lang-corner {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  padding: 16px 20px;
}

.at-auth .auth-wrap {
  min-height: calc(100vh - 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.at-auth .auth-left {
  background: linear-gradient(135deg, #0f1729 0%, #1a2744 50%, #0f2057 100%);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.at-auth .auth-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(99, 102, 241, 0.12) 0%, transparent 50%);
}

.at-auth .auth-left-content {
  position: relative;
  z-index: 1;
}

.at-auth .auth-tagline {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.at-auth .auth-tagline span {
  color: #60a5fa;
}

.at-auth .auth-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
  line-height: 1.7;
}

.at-auth .auth-features {
  position: relative;
  z-index: 1;
}

.at-auth .auth-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.at-auth .auth-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.at-auth .auth-feat-icon svg {
  width: 18px;
  height: 18px;
}

.at-auth .auth-feat-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.at-auth .float-cards {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.at-auth .float-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  backdrop-filter: blur(8px);
}

.at-auth .float-card-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.at-auth .float-card-value {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: var(--at-mono);
}

.at-auth .float-card-change {
  font-size: 12px;
  color: #34d399;
  margin-top: 2px;
}

.at-auth .float-card-change--warn {
  color: #f59e0b;
}

.at-auth .auth-right {
  background: var(--at-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 52px;
}

/* Centered card layout (login / register — no side column) */
.at-auth.at-auth--centered .auth-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 10px 20px 10px;
  box-sizing: border-box;
}

.at-auth.at-auth--centered .auth-panel {
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
}

.at-auth.at-auth--centered .auth-form-box {
  background: var(--at-surface);
  border: 1px solid var(--at-border);
  border-radius: 16px;
  padding: 28px 28px 19px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.07);
}

.at-auth.at-auth--centered .auth-form-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -4px 0 2px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--at-border);
}

.at-auth.at-auth--centered .form-head {
  margin-bottom: 22px;
  text-align: center;
}

.at-auth.at-auth--centered .auth-demo-banner {
  margin-top: 12px;
  margin-bottom: 0;
}

.at-auth .auth-form-box {
  width: 100%;
  max-width: 400px;
}

.at-auth .auth-form-box--wide {
  max-width: 440px;
}

.at-auth .form-head {
  margin-bottom: 32px;
}

.at-auth .form-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--at-ink);
  letter-spacing: -0.4px;
  margin-bottom: -15px;
}

.at-auth .form-sub {
  font-size: 14px;
  color: var(--at-ink3);
}

.at-auth .form-sub a {
  color: var(--at-accent);
  text-decoration: none;
  font-weight: 500;
}

.at-auth .form-sub a:hover {
  text-decoration: underline;
}

.at-auth .form-sub--note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
}

.at-auth .form-sub--post-submit {
  text-align: center;
  margin: 20px 0 0;
}

.at-auth .field {
  margin-bottom: 10px;
}

.at-auth .field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--at-ink2);
  margin-bottom: 7px;
  letter-spacing: 0.1px;
}

.at-auth .input-wrap {
  position: relative;
}

.at-auth .input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--at-ink4);
  pointer-events: none;
}

.at-auth .field input,
.at-auth .field select {
  width: 100%;
  height: 44px;
  border: 1.5px solid var(--at-border2);
  border-radius: var(--at-r);
  padding: 0 14px 0 40px;
  font-family: var(--at-font);
  font-size: 14px;
  color: var(--at-ink);
  background: var(--at-surface);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
  outline: none;
  appearance: none;
}

.at-auth .field input:focus,
.at-auth .field select:focus {
  border-color: var(--at-accent);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

.at-auth .field input::placeholder {
  color: var(--at-ink4);
}

.at-auth .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.at-auth .field-row .field {
  margin-bottom: 0;
}

.at-auth .field-spacer {
  margin-bottom: 18px;
}

.at-auth .form-extras {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 10px;
}

.at-auth .check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--at-ink2);
  cursor: pointer;
}

.at-auth .check-label input[type='checkbox'] {
  width: 15px;
  height: 15px;
  accent-color: var(--at-accent);
}

.at-auth .forgot-link {
  font-size: 13px;
  color: var(--at-accent);
  font-weight: 500;
  text-decoration: none;
}

.at-auth .forgot-link:hover {
  text-decoration: underline;
}

.at-auth .btn-primary {
  width: 100%;
  height: 46px;
  background: var(--at-accent);
  color: #fff;
  font-family: var(--at-font);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--at-r);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    background 0.15s,
    transform 0.1s;
  letter-spacing: 0.1px;
}

.at-auth .btn-primary:hover:not(:disabled) {
  background: var(--at-accent2);
}

.at-auth .btn-primary:active:not(:disabled) {
  transform: scale(0.98);
}

.at-auth .btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.at-auth .btn-primary svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  flex-shrink: 0;
}

.at-auth .divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.at-auth .divider-line {
  flex: 1;
  height: 1px;
  background: var(--at-border);
}

.at-auth .divider-text {
  font-size: 12px;
  color: var(--at-ink4);
  font-weight: 500;
}

.at-auth .social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.at-auth .btn-social {
  height: 42px;
  border: 1.5px solid var(--at-border2);
  border-radius: var(--at-r);
  background: var(--at-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--at-font);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--at-ink2);
  cursor: pointer;
  transition: all 0.15s;
}

.at-auth .btn-social:hover {
  border-color: var(--at-accent);
  background: var(--at-accent-light);
  color: var(--at-accent);
}

.at-auth .btn-social svg {
  width: 18px;
  height: 18px;
}

.at-auth .auth-demo-banner {
  margin-top: 12px;
  margin-bottom: 0;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px dashed var(--at-border2);
  background: var(--at-surface2);
}

.at-auth .auth-demo-banner__title {
  font-size: 10px;
  font-weight: 700;
  color: var(--at-ink2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  line-height: 1.2;
}

.at-auth .auth-demo-banner__account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  padding-top: 6px;
  border-top: 1px solid var(--at-border2);
  min-width: 0;
}

.at-auth .auth-demo-banner__account:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.at-auth .auth-demo-banner__role {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--at-ink);
  line-height: 1.2;
}

.at-auth .auth-demo-banner__use {
  flex-shrink: 0;
  height: 26px;
  padding: 0 8px;
  border-radius: 6px;
  border: 1px solid var(--at-accent);
  background: var(--at-accent-light);
  color: var(--at-accent2);
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
}

.at-auth .auth-demo-banner__use:hover {
  background: var(--at-accent-pale);
}

.at-auth .auth-form__error {
  padding: 10px 12px;
  border-radius: var(--at-r);
  font-size: 14px;
  background: var(--at-red-light);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: var(--at-red);
  margin-bottom: 18px;
}

.at-auth .auth-benefits-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--at-r-lg);
  padding: 24px;
  margin: 32px 0;
}

.at-auth .auth-benefits-card__title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.at-auth .auth-benefit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.at-auth .auth-benefit-row:last-child {
  margin-bottom: 0;
}

.at-auth .auth-benefit-row svg {
  flex-shrink: 0;
}

.at-auth .auth-trust-note {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 6px;
}

.at-auth .auth-trust-note svg {
  flex-shrink: 0;
}

.at-auth .auth-terms-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

.at-auth .auth-terms-row input[type='checkbox'] {
  margin-top: 3px;
  width: 15px;
  height: 15px;
  accent-color: var(--at-accent);
  flex-shrink: 0;
}

.at-auth .auth-terms-row span {
  font-size: 13px;
  color: var(--at-ink3);
  line-height: 1.5;
}

.at-auth .auth-terms-row a {
  color: var(--at-accent);
  text-decoration: none;
}

.at-auth .auth-terms-row a:hover {
  text-decoration: underline;
}

.at-auth .password-strength {
  margin-top: 6px;
  display: flex;
  gap: 4px;
}

.at-auth .strength-bar {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: var(--at-border);
  transition: background 0.3s;
}

.at-auth .strength-bar.s1 {
  background: var(--at-red);
}

.at-auth .strength-bar.s2 {
  background: var(--at-amber);
}

.at-auth .strength-bar.s3 {
  background: var(--at-green);
}

.at-auth .strength-text {
  font-size: 11px;
  color: var(--at-ink4);
  margin-top: 4px;
}

@media (max-width: 960px) {
  .at-auth .auth-wrap {
    grid-template-columns: 1fr;
  }

  .at-auth .auth-left {
    min-height: auto;
    padding: 40px 28px;
  }

  .at-auth .auth-right {
    padding: 36px 24px;
  }

  .at-auth .top-nav {
    padding: 0 16px;
  }
}

@media (max-width: 520px) {
  .at-auth .field-row {
    grid-template-columns: 1fr;
  }

  .at-auth .field-row .field {
    margin-bottom: 18px;
  }

  .at-auth .field-row .field:last-child {
    margin-bottom: 0;
  }

  .at-auth .social-btns {
    grid-template-columns: 1fr;
  }

}

/* Guest route loading (used outside .at-auth) */
.auth-loading {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 120px;
  background: var(--at-surface2, #f8f9fb);
}

.auth-loading__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--at-accent, #0080ff);
  animation: at-auth-bounce 1.2s ease-in-out infinite;
}

.auth-loading__dot:nth-child(2) {
  animation-delay: 0.15s;
}

.auth-loading__dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes at-auth-bounce {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}
