/* Smartpayz 2FA Prototype — design tokens aligned with reference screens */

:root {
  --sp-blue: #3b82f6;
  --sp-blue-hover: #2563eb;
  --sp-blue-soft: #eff6ff;
  --sp-magenta: #e91e63;
  --sp-navy: #1e3a5f;
  --sp-bg-page: #f0f2f5;
  --sp-bg-panel: #ffffff;
  --sp-border: #e5e7eb;
  --sp-text: #111827;
  --sp-text-secondary: #6b7280;
  --sp-text-muted: #9ca3af;
  --sp-sidebar-active-bg: #eff6ff;
  --sp-sidebar-border-active: #3b82f6;
  --sp-success-bg: #dcfce7;
  --sp-success-text: #166534;
  --sp-warning-bg: #fef3c7;
  --sp-warning-text: #92400e;
  --sp-neutral-badge-bg: #f3f4f6;
  --sp-neutral-badge-text: #4b5563;
  --sp-shadow-modal: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius-input: 4px;
  --radius-card: 6px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--sp-text);
  background: var(--sp-bg-page);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--sp-blue);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.screen {
  min-height: 100vh;
}

.screen[hidden] {
  display: none !important;
}

/* ——— Hub entry ——— */
.hub-screen {
  padding: 48px 32px 64px;
  max-width: 1120px;
  margin: 0 auto;
}

.hub-header {
  margin-bottom: 36px;
}

.hub-header h1 {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
 color: var(--sp-text);
}

.hub-header p {
  margin: 0;
  max-width: 640px;
  color: var(--sp-text-secondary);
  font-size: 0.95rem;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.hub-card {
  display: block;
  background: var(--sp-bg-panel);
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-card);
  padding: 20px 20px 18px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
  text-align: left;
  font: inherit;
  width: 100%;
}

.hub-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}

.hub-card:focus-visible {
  outline: 2px solid var(--sp-blue);
  outline-offset: 2px;
}

.hub-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.hub-card-title {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.hub-card-sub {
  font-size: 0.85rem;
  color: var(--sp-text-secondary);
  margin: 0 0 14px;
  line-height: 1.4;
}

.hub-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--sp-border);
}

.hub-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--sp-neutral-badge-bg);
  color: var(--sp-neutral-badge-text);
}

.hub-badge.auth {
  background: #ede9fe;
  color: #5b21b6;
}

.hub-cta {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--sp-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ——— BO shell ——— */
.bo-app {
  display: flex;
  min-height: 100vh;
}

.bo-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--sp-bg-panel);
  border-right: 1px solid var(--sp-border);
  display: flex;
  flex-direction: column;
}

.bo-sidebar-brand {
  padding: 18px 16px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sp-navy);
  border-bottom: 1px solid var(--sp-border);
}

.bo-nav-section {
  padding: 12px 0;
  border-bottom: 1px solid var(--sp-border);
}

.bo-nav-label {
  padding: 4px 16px 6px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sp-text-muted);
}

.bo-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 0.8rem;
  color: var(--sp-text-secondary);
  cursor: default;
}

.bo-nav-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.55;
  flex-shrink: 0;
}

.bo-nav-item.active {
  background: var(--sp-sidebar-active-bg);
  color: var(--sp-blue);
  font-weight: 500;
  box-shadow: inset 3px 0 0 var(--sp-sidebar-border-active);
}

.bo-nav-item.active svg {
  opacity: 1;
  color: var(--sp-blue);
}

.bo-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bo-header {
  height: 52px;
  background: var(--sp-bg-panel);
  border-bottom: 1px solid var(--sp-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 16px;
}

.bo-search {
  flex: 1;
  max-width: 320px;
  position: relative;
}

.bo-search input {
  width: 100%;
  height: 34px;
  padding: 0 12px 0 36px;
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-input);
  font-size: 0.85rem;
  font-family: inherit;
}

.bo-search svg {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--sp-text-muted);
}

.bo-header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bo-header-time {
  font-size: 0.75rem;
  color: var(--sp-text-secondary);
 white-space: nowrap;
}

.bo-icon-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--sp-border);
  background: var(--sp-bg-panel);
  border-radius: var(--radius-input);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--sp-text-secondary);
}

.bo-icon-btn:hover {
  background: #f9fafb;
}

.bo-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bo-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sp-blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bo-user-name {
  font-size: 0.8rem;
  font-weight: 500;
}

.bo-content-wrap {
  flex: 1;
  padding: 20px;
  overflow: auto;
}

.bo-panel {
  background: var(--sp-bg-panel);
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-card);
  min-height: calc(100vh - 120px);
 padding: 0 24px 24px;
}

.bo-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--sp-text-secondary);
  margin-bottom: 16px;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.bo-back:hover {
  color: var(--sp-blue);
}

/* Tabs */
.bo-tabs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid var(--sp-border);
  padding-top: 4px;
}

.bo-tabs {
  display: flex;
  gap: 0;
}

.bo-tab {
  padding: 14px 4px;
  margin-right: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sp-text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  font-family: inherit;
}

.bo-tab:hover {
  color: var(--sp-text);
}

.bo-tab.active {
  color: var(--sp-blue);
  border-bottom-color: var(--sp-blue);
}

.bo-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 16px;
  background: var(--sp-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-input);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--sp-blue-hover);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  height: 36px;
  padding: 0 14px;
  background: var(--sp-bg-panel);
  color: var(--sp-text-secondary);
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-input);
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
}

.btn-secondary:hover {
  background: #f9fafb;
}

.btn-ghost {
  background: transparent;
  border: none;
  color: var(--sp-text-secondary);
  font-size: 0.8rem;
  font-family: inherit;
  cursor: pointer;
  padding: 8px 12px;
}

.btn-ghost:hover {
  color: var(--sp-text);
}

/* Table */
.bo-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-input);
}

.bo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}

.bo-table th {
  text-align: left;
  padding: 12px 14px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sp-text-muted);
  background: #fafafa;
  border-bottom: 1px solid var(--sp-border);
}

.bo-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--sp-border);
  vertical-align: middle;
}

.bo-table tr:last-child td {
  border-bottom: none;
}

.bo-table .name-cell {
  font-weight: 600;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
}

.badge-invited {
  background: var(--sp-neutral-badge-bg);
  color: var(--sp-neutral-badge-text);
}

.badge-active {
  background: var(--sp-success-bg);
  color: var(--sp-success-text);
}

.badge-2fa-off {
  background: var(--sp-neutral-badge-bg);
  color: var(--sp-neutral-badge-text);
}

.badge-2fa-pending {
  background: var(--sp-warning-bg);
  color: var(--sp-warning-text);
}

.badge-2fa-active {
  background: var(--sp-success-bg);
  color: var(--sp-success-text);
}

.action-icon {
  color: var(--sp-blue);
  cursor: pointer;
  padding: 4px;
  vertical-align: middle;
}

button.action-icon {
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.edit-back-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.bo-back-ghost {
  color: var(--sp-text-muted);
  font-weight: 400;
}

.bo-back-ghost:hover {
  color: var(--sp-blue);
}

#users.users-modal-open .bo-sidebar,
#users.users-modal-open .bo-main {
  opacity: 0.55;
  pointer-events: none;
}

#users.users-modal-open #invite-modal-backdrop {
  pointer-events: auto;
}

#users.users-modal-open #invite-modal-backdrop .modal {
  pointer-events: auto;
}

.edit-context-bar {
  font-size: 0.85rem;
  color: var(--sp-text-secondary);
  margin: 0 0 8px;
  padding-top: 8px;
}

.modal-compact .modal-body {
  padding-top: 8px;
}

.confirm-body-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--sp-text);
}

.history-table-wrap {
  margin-top: 8px;
}

.auth-btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.auth-btn-primary:disabled:hover {
  background: var(--sp-blue);
}

.auth-demo-hint {
  text-align: center;
  font-size: 0.72rem;
  color: var(--sp-text-muted);
  margin: 10px 0 0;
  line-height: 1.4;
}

.auth-success-card .auth-title {
  margin-top: 8px;
}

/* Filters panel (optional) */
.filter-panel {
  margin-top: 12px;
  padding: 14px 16px;
  background: #fafafa;
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-input);
  font-size: 0.8rem;
}

.filter-panel[hidden] {
  display: none;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.filter-row label {
  color: var(--sp-text-secondary);
  font-size: 0.75rem;
}

.filter-row select {
  height: 32px;
  padding: 0 10px;
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-input);
  font-family: inherit;
  font-size: 0.8rem;
  background: #fff;
}

/* Modal */
/* Invite screen: dim content behind modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 100;
}

/* `hidden` must win — author `display: flex` otherwise keeps backdrops on-screen */
.modal-backdrop[hidden] {
  display: none !important;
  pointer-events: none;
}

.modal {
  background: var(--sp-bg-panel);
  border-radius: 8px;
  box-shadow: var(--sp-shadow-modal);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow: auto;
  position: relative;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--sp-text-muted);
  line-height: 1;
}

.modal-close:hover {
  color: var(--sp-text);
}

.modal-body {
  padding: 20px 24px 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  color: var(--sp-text-secondary);
  margin-bottom: 6px;
}

.form-group label .req {
  color: var(--sp-text-muted);
}

.form-group input,
.form-group select {
  width: 100%;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-input);
  font-size: 0.85rem;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sp-blue);
  box-shadow: 0 0 0 1px var(--sp-blue);
}

.label-with-help {
  display: flex;
  align-items: center;
  gap: 6px;
}

.security-section {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--sp-border);
}

.security-section h3 {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sp-text);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sp-blue);
  flex-shrink: 0;
}

.checkbox-row label {
  font-size: 0.85rem;
  color: var(--sp-text);
  margin: 0;
  cursor: default;
}

.helper-text {
  font-size: 0.75rem;
  color: var(--sp-text-secondary);
  margin: 8px 0 0 28px;
  line-height: 1.4;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 24px 20px;
}

/* Edit user form */
.edit-form {
  padding-top: 20px;
  max-width: 900px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 32px;
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.readonly-field {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--sp-border);
  border-radius: var(--radius-input);
  font-size: 0.85rem;
  background: #fafafa;
  color: var(--sp-text);
  display: flex;
  align-items: center;
}

.readonly-field.with-icon {
  justify-content: space-between;
}

.dots-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--sp-border);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--sp-text-muted);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--sp-border);
}

.warning-note {
  grid-column: 1 / -1;
  padding: 12px 14px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-input);
  font-size: 0.8rem;
  color: #92400e;
 margin-bottom: 8px;
}

.helper-note {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--sp-text-secondary);
  margin-top: -8px;
}

.state-switcher {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed var(--sp-border);
  font-size: 0.75rem;
  color: var(--sp-text-muted);
}

.state-switcher a {
  margin-right: 12px;
}

/* ——— Auth / Login screens ——— */
.auth-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: #eceff1;
}

.auth-card {
  width: 100%;
  max-width: 400px;
  background: var(--sp-bg-panel);
  border: 1px solid var(--sp-border);
  border-radius: 10px;
  padding: 36px 32px 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.auth-logo {
  text-align: center;
  margin-bottom: 20px;
}

.auth-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.auth-logo-mark svg {
  width: 44px;
  height: 44px;
}

.auth-logo-text {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.auth-logo-text .smart {
  color: var(--sp-navy);
}

.auth-logo-text .payz {
  color: var(--sp-blue);
}

.auth-welcome {
  text-align: center;
  font-size: 0.95rem;
  color: var(--sp-text-secondary);
  margin-bottom: 22px;
}

/* Reference login page: “Welcome” below logo */
.auth-login-heading {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--sp-text-secondary);
  margin: 0 0 22px;
}

.auth-card-login .auth-logo {
  margin-bottom: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Email field: light blue border (reference active / focus treatment) */
.auth-field-login-email input {
  border-color: #93c5fd;
}

.auth-field-login-email input:focus {
  border-color: var(--sp-blue);
  box-shadow: 0 0 0 1px var(--sp-blue);
}

/* Password: placeholder style, neutral border */
.auth-field-password {
  position: relative;
  margin-bottom: 16px;
}

.auth-field-password input {
  width: 100%;
  height: 48px;
  padding: 0 76px 0 14px;
  border: 1px solid var(--sp-border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--sp-bg-panel);
}

.auth-field-password input::placeholder {
  color: var(--sp-text-muted);
}

.auth-field-password input:focus {
  outline: none;
  border-color: var(--sp-blue);
  box-shadow: 0 0 0 1px var(--sp-blue);
}

.auth-field-password .field-icons {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
}

.auth-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--sp-text-muted);
  line-height: 1;
}

.auth-icon-btn:hover {
  color: var(--sp-text-secondary);
}

.auth-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--sp-text);
}

.auth-intro {
  text-align: center;
  font-size: 0.85rem;
  color: var(--sp-text-secondary);
  margin: 0 0 20px;
  line-height: 1.5;
}

.auth-steps {
  font-size: 0.8rem;
  color: var(--sp-text-secondary);
  margin: 0 0 18px;
  padding-left: 18px;
  line-height: 1.6;
}

.auth-field {
  position: relative;
  margin-bottom: 16px;
}

.auth-field label {
  position: absolute;
  left: 12px;
  top: -8px;
  background: var(--sp-bg-panel);
  padding: 0 4px;
  font-size: 0.7rem;
  color: var(--sp-text-secondary);
}

.auth-field input {
  width: 100%;
  height: 48px;
  padding: 0 44px 0 14px;
  border: 1px solid var(--sp-border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
}

.auth-field input:focus {
  outline: none;
  border-color: var(--sp-blue);
  box-shadow: 0 0 0 1px var(--sp-blue);
}

.auth-field .field-icons {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 6px;
  color: var(--sp-text-muted);
}

.qr-block {
  display: flex;
  justify-content: center;
  margin: 16px 0 20px;
}

.qr-block svg,
.qr-block img {
  width: 160px;
  height: 160px;
  border: 1px solid var(--sp-border);
  border-radius: 6px;
}

.auth-btn-primary {
  width: 100%;
  height: 48px;
  margin-top: 8px;
  background: var(--sp-blue);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}

.auth-btn-primary:hover {
  background: var(--sp-blue-hover);
}

.auth-footer-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--sp-text-secondary);
  margin-top: 16px;
  line-height: 1.45;
}

.auth-meta {
  text-align: center;
  font-size: 0.8rem;
  color: var(--sp-text-secondary);
  margin: 12px 0 0;
}

.field-error {
  font-size: 0.75rem;
  color: #b91c1c;
  margin-top: 6px;
}

.auth-alert {
  padding: 12px 14px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #991b1b;
  margin-bottom: 20px;
}

.auth-row-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 0.8rem;
}

.auth-row-links label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sp-text-secondary);
  cursor: pointer;
}

.auth-row-links input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--sp-blue);
}

.auth-variant-links {
  text-align: center;
  margin-top: 20px;
  font-size: 0.75rem;
  color: var(--sp-text-muted);
}

.auth-variant-links a {
  margin: 0 8px;
}
