body.auth-page {
  min-height: 100vh;
  margin: 0;
  background: linear-gradient(180deg, #eef2ff 0, #f8fafc 48%, #eef2f7 100%);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #202938;
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
}

.auth-brand {
  padding: clamp(32px, 6vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4d55cf;
  font-weight: 850;
  font-size: 1.25rem;
  text-decoration: none;
}

.auth-brand h1 {
  max-width: 620px;
  margin: 28px 0 14px;
  color: #111827;
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.auth-brand p {
  max-width: 560px;
  color: #5f6b7a;
  font-size: 1.06rem;
  line-height: 1.65;
}

.auth-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.auth-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dfe3ff;
  background: rgba(255,255,255,.72);
  color: #344054;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: .9rem;
}

.auth-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.auth-card {
  width: 100%;
  max-width: 430px;
  background: #fff;
  border: 1px solid #e6e9f3;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 24px 70px rgba(31,41,55,.14);
}

.auth-card h2 {
  margin: 0 0 6px;
  color: #111827;
  font-weight: 850;
}

.auth-card .subtitle {
  color: #667085;
  margin-bottom: 22px;
}

.auth-card .form-label {
  font-weight: 750;
  color: #344054;
}

.auth-card .form-control {
  border-radius: 12px;
  padding: 12px 14px;
  border-color: #d9deea;
}

.auth-card .form-control:focus {
  border-color: #6d6afe;
  box-shadow: 0 0 0 .22rem rgba(109,106,254,.14);
}

.auth-card .btn {
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
}

.auth-alt {
  color: #667085;
}

.auth-alt a {
  color: #4d55cf;
  font-weight: 750;
  text-decoration: none;
}

.auth-alt a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }
  .auth-brand {
    padding: 28px 22px 0;
  }
  .auth-brand h1 {
    font-size: 2.2rem;
  }
  .auth-panel {
    padding: 22px;
  }
}
