﻿.auth-shell {
  min-height: calc(100vh - 52px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem 4rem;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.page-title--loose {
  margin-bottom: 1.25rem;
}

.auth-form__submit {
  width: 100%;
  justify-content: center;
  padding: 0.75rem 1rem;
}

.auth-footer {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-2);
  text-align: center;
}

.auth-footer__link {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 640px) {
  .auth-card {
    padding: 2rem 1.5rem;
  }
}
