.auth-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-shell {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  box-shadow: var(--elev);
  overflow: hidden;
}

.auth-left {
  background: linear-gradient(160deg, #24346e, #171f3f);
  padding: 36px;
}

.auth-right {
  padding: 36px;
}

.auth-form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
}

.auth-message {
  min-height: 22px;
  color: var(--text-soft);
  margin-top: 6px;
}

@media (max-width: 860px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }
}

