/* register.css — inherits design tokens from base.css */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* ── Card ── */
.auth-card {
  width: 100%;
  max-width: 400px;
}

/* ── Brand ── */
.auth-brand {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-brand .logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  background: var(--text);
  margin-bottom: 1.25rem;
}

.auth-brand .logo-mark svg {
  width: 28px;
  height: 28px;
  fill: var(--bg);
}

.auth-brand h1 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--text);
  margin-bottom: .35rem;
}

.auth-brand p {
  font-size: .9375rem;
  color: var(--text-2);
}

/* ── Social buttons ── */
.btn-social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  padding: .75rem;
  margin-bottom: .625rem;
  background: var(--bg);
  color: var(--text);
  font-size: .9375rem;
  font-weight: 500;
  font-family: var(--font);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.btn-social:hover { background: var(--bg-2); border-color: var(--text-3); }
.btn-social svg   { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Submit ── */
.btn-primary.full {
  width: 100%;
  margin-top: .75rem;
  padding: .8125rem;
}

/* ── Footer ── */
.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .875rem;
  color: var(--text-2);
}

.auth-footer a {
  color: var(--blue);
  font-weight: 500;
}
