/* ============================================================
   Register page — BranShee Design System
   ============================================================ */

.auth-register-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  background: var(--surface);
}

.auth-register-inner {
  width: 100%;
  max-width: 460px;
}

/* ── Top heading ─────────────────────────────────────────────── */
.auth-register-top {
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.auth-register-top h1 {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
}

.auth-register-top .auth-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* ── Card ────────────────────────────────────────────────────── */
.auth-register-card {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

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

.auth-register-row {
  display: grid;
  gap: 10px;
}

/* ── Service autocomplete dropdown ───────────────────────────── */
.auth-service-wrap {
  position: relative;
}

.auth-service-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-p);
  display: none;
  flex-direction: column;
  z-index: 100;
  overflow: hidden;
  animation: fadeInDown 0.18s ease both;
}

.auth-service-item {
  padding: 10px 14px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.1s;
}

.auth-service-item:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.service-input--selected {
  border-color: var(--accent) !important;
}

/* ── Terms checkbox ──────────────────────────────────────────── */
.auth-check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  cursor: pointer;
}

.auth-check-text {
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.5;
  display: flex;
  gap: 4px;
}

.auth-check-text a {
  color: var(--accent);
  font-weight: 600;
  font-size: 12.5px;
  text-decoration: none;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .auth-register-row {
    grid-template-columns: 1fr;
  }
}
