/* ==========================================================================
   Auth Pages (login, password reset, invite acceptance)
   ========================================================================== */

.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-4);
  background-color: var(--color-gray-50);
}

.auth-card {
  width: 100%;
  max-width: 24rem;
  padding: var(--space-8);
  background-color: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.auth-card h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
}

.auth-card > p {
  margin-bottom: var(--space-6);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.auth-form__field {
  display: flex;
  flex-direction: column;
}

.auth-form__submit {
  width: 100%;
  justify-content: center;
  padding: var(--space-3) var(--space-4);
}

.auth-card__footer {
  margin-top: var(--space-6);
  text-align: center;
  font-size: var(--text-sm);
}
