.auth-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 0 3rem;
}

.auth-card.panel {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-sizing: border-box;
}

.auth-head {
  margin-bottom: 0.75rem;
}

.auth-head h1 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.auth-head p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
}

.auth-label {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.auth-input {
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--ink);
  font: inherit;
  box-sizing: border-box;
}

.auth-input::placeholder {
  color: var(--faint);
}

.auth-input:focus {
  outline: none;
  border-color: var(--border-strong);
  background: var(--surface-3);
}

.auth-submit {
  display: flex;
  margin-top: 1rem;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
}

.auth-foot {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.88rem;
}

.auth-foot a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-captcha {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
}
