.auth-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(226, 248, 252, .62), rgba(245, 249, 252, 0) 430px),
    var(--bg);
}

.auth-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 40px 96px;
}

.auth-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: center;
}

.auth-copy h1 {
  margin: 22px 0 16px;
  color: var(--ink);
  font-size: 52px;
  line-height: 1.12;
}

.auth-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.9;
}

.auth-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 34px;
  box-shadow: var(--shadow);
}

.auth-logo {
  width: 128px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
}

.auth-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.auth-card p {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.75;
}

.auth-primary,
.auth-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  font-weight: 900;
}

.auth-primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  box-shadow: 0 14px 30px rgba(18, 202, 238, .22);
}

.auth-secondary {
  margin-top: 12px;
  border: 1px solid #bdeaf3;
  color: var(--cyan-dark);
  background: var(--cyan-soft);
}

.auth-notes,
.auth-requirements {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.auth-notes {
  grid-template-columns: repeat(3, 1fr);
}

.auth-requirements {
  grid-template-columns: repeat(4, 1fr);
}

.auth-notes article,
.auth-requirements article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
}

.auth-notes strong,
.auth-requirements strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
}

.auth-notes span,
.auth-requirements span {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 980px) {
  .auth-shell {
    padding: 44px 22px 72px;
  }

  .auth-panel,
  .auth-notes,
  .auth-requirements {
    grid-template-columns: 1fr;
  }

  .auth-copy h1 {
    font-size: 38px;
  }

  .auth-copy p {
    font-size: 17px;
  }
}

