.auth-page {
  min-height: calc(100vh - 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 40px 32px;
}

.auth-logo {
  margin-bottom: 32px;
}

.auth-title {
  font-size: 28px;
  margin-bottom: 8px;
}

.auth-sub {
  font-size: 14px;
  color: var(--aa-text-dim);
  margin-bottom: 32px;
}

.auth-section {
  margin-bottom: 24px;
}

.auth-form { display: flex; flex-direction: column; gap: 16px; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}
.auth-divider-line {
  flex: 1;
  height: 1px;
  background: var(--aa-border, #2A2A3A);
}
.auth-divider-text {
  font-size: 12px;
  color: var(--aa-text-dim);
  white-space: nowrap;
}

.auth-oauth {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.auth-oauth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.auth-terms {
  font-size: 12px;
  color: var(--aa-text-dim);
  text-align: center;
  margin-top: 24px;
  line-height: 1.6;
}
.auth-link { color: var(--aa-gold, #C9A84C); text-decoration: none; }
.auth-link:hover { text-decoration: underline; }
