/* Shared auth pill (Sign in / Sign up) — used on all pre-login pages.
   Edit here to change the buttons everywhere at once.
   Pages: index, pricing, about, contact, login, register, legal/*. */

.auth-switch {
  display: inline-flex;
  margin-left: 16px;
  border: 1px solid #30363d;
  border-radius: 6px;
  overflow: hidden;
  font-size: 13px;
  line-height: 1;
}
.auth-switch-btn {
  display: block;
  width: 76px;
  padding: 7px 0;
  text-align: center;
  color: #c9d1d9 !important;
  text-decoration: none;
  background: transparent;
  font-weight: 500;
  letter-spacing: 0.1px;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.auth-switch-btn:hover {
  background: rgba(88,166,255,0.08);
  color: #58a6ff !important;
}
.auth-switch-btn.active {
  background: #238636;
  color: #fff !important;
}
.auth-switch-btn.active:hover {
  background: #2ea043;
  color: #fff !important;
}

@media (max-width: 600px) {
  .auth-switch { margin-left: 8px; font-size: 12px; }
  .auth-switch-btn { width: 64px; padding: 6px 0; }
}
