@import url('base.css');

.auth-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(160deg, #eef2ff 0%, #f8fafc 60%);
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 30px;
  text-align: center;
}

.auth-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0 0 4px;
}

.auth-subtitle {
  color: var(--color-muted);
  margin: 0 0 24px;
  font-size: 14px;
}

.auth-links {
  margin-top: 20px;
  font-size: 14px;
  color: var(--color-muted);
  display: flex;
  justify-content: center;
  gap: 8px;
}

.auth-links a { color: var(--color-primary); font-weight: 600; }
.auth-links a:hover { text-decoration: underline; }
