.auth-page {
  display: block;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 122, 77, 0.22), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(11, 77, 162, 0.28), transparent 30%),
    linear-gradient(135deg, #071a42 0%, #10223f 48%, #f4f7fb 48.2%, #eef3f9 100%);
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.auth-panel {
  width: min(460px, 100%);
  display: grid;
  gap: 20px;
  padding: 28px;
  border: 1px solid rgba(220, 226, 235, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(7, 26, 66, 0.26);
  backdrop-filter: blur(12px);
}

.auth-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.auth-brand img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.auth-language {
  justify-self: start;
}

.auth-copy p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.auth-copy h1 {
  margin-bottom: 8px;
  font-size: clamp(30px, 6vw, 44px);
  line-height: 1;
}

.auth-copy span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form .primary-button {
  min-height: 46px;
  margin-top: 4px;
}

.auth-message {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.auth-message.error {
  color: var(--red);
}

.auth-message.success {
  color: var(--green);
}

.auth-alt {
  margin: 0;
  color: var(--muted);
}

.auth-alt a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 620px) {
  .auth-shell {
    padding: 16px;
  }

  .auth-panel {
    padding: 22px;
  }
}
