.wrap--auth {
  display: flex;
  justify-content: center;
  padding-top: 68px;
  padding-bottom: 80px;
}

.auth-wrap-inner {
  width: 100%;
  max-width: 460px;
}

/* Card */
.auth-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  padding: 36px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
}

/* Logo */
.auth-logo {
  height: 32px;
  width: auto;
  margin-bottom: 32px;
}

.auth-title {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  text-align: center;
  margin: 0 0 6px;
}

.auth-sub {
  font-size: 13.5px;
  color: var(--muted);
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.55;
}

/* Steam button */
.btn-steam {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 52px;
  border-radius: var(--r-sm);
  border: none;
  background: linear-gradient(180deg, #4c7db1 0%, #3a6496 50%, #2e5480 100%);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .01em;
  transition: filter .14s, transform .1s;
  box-shadow: 0 4px 20px rgba(60, 110, 180, .35), inset 0 1px 0 rgba(255,255,255,.12);
  text-decoration: none;
}
.btn-steam:hover  { filter: brightness(1.12); transform: translateY(-1px); }
.btn-steam:active { filter: brightness(.95);  transform: translateY(0); }

.btn-steam .steam-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Divider note */
.auth-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--faint);
  text-align: center;
  line-height: 1.6;
}
.auth-note a { color: var(--ink-2); border-bottom: 1px solid var(--line); }
.auth-note a:hover { color: var(--ink); }

/* Flash message */
.auth-flash {
  width: 100%;
  padding: 11px 16px;
  border-radius: var(--r-sm);
  background: rgba(255, 46, 36, .12);
  border: 1px solid rgba(255, 46, 36, .25);
  color: var(--accent);
  font-size: 13.5px;
  margin-bottom: 20px;
  text-align: center;
}
