.auth-page {
  min-height: 100vh;
  background: #11191e;
}

.auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 38px;
  width: min(1080px, calc(100vw - 32px));
  min-height: 100vh;
  margin: 0 auto;
  align-items: center;
  padding: 42px 0;
}

.auth-intro {
  color: #fff;
}

.auth-brand {
  margin-bottom: 42px;
}

.auth-logo {
  width: 190px;
  height: auto;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
}

.auth-brand span {
  color: #aebcc3;
}

.auth-intro h1 {
  max-width: 620px;
  font-size: 44px;
  line-height: 1.08;
}

.auth-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 16px;
  text-align: center;
  font-size: 12px;
  color: #8fa0a9;
}

.auth-intro p {
  max-width: 560px;
  margin-top: 18px;
  color: #b7c7ce;
  font-size: 16px;
}

.auth-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.auth-points span {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #dbe7eb;
  font-size: 13px;
}

.auth-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.auth-card h2 {
  font-size: 24px;
}

.auth-card > p {
  margin-top: 8px;
}

.auth-card form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.auth-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.auth-card input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: var(--surface-2);
  color: var(--ink);
}

.auth-card input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 143, 136, 0.12);
}

.auth-hint {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
}

.auth-hint strong {
  color: var(--ink);
}

.auth-error {
  min-height: 18px;
  margin-top: 12px;
  color: var(--red);
  font-weight: 700;
}

@media (max-width: 860px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-intro h1 {
    font-size: 32px;
  }
}
