.auth-body {
  background:
    radial-gradient(1200px 700px at 10% 0%, rgba(76, 96, 218, 0.18), transparent 55%),
    var(--color-surface-soft);
}

.auth-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.auth-card {
  width: min(520px, 100%);
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.10);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
  padding: 18px;
}

.auth-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.auth-brand .logo {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-brand-primary), var(--color-success));
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-brand .logo i {
  color: #fff;
  font-size: 18px;
}

.auth-brand .t1 {
  font-weight: 950;
}

.auth-brand .t2 {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: -2px;
}



.auth-brand.auth-brand-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.auth-brand-logo-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-brand-logo-image {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.auth-brand-logo-fallback {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

.auth-brand-text .t1 {
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.35;
  word-break: break-word;
}

.auth-brand-text .t2 {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.35;
}