:root {
  /* ===== TEMA CLARO ===== */
  --bg: #f5f7fa;
  --bg2: #ffffff;
  --panel: #ffffff;
  --panel2: #f8faff;
  --panel3: #eef2f6;
  --line: #dce2ec;
  --line-2: #b4c0d0;
  --text: #1e293b;
  --text-light: #475569;
  --muted: #64748b;
  --placeholder: #94a3b8;

  --primary: #1a2b5f;
  --primary-2: #0a1737;
  --accent: #2563eb;
  --accent2: #3b82f6;
  --accent3: #60a5fa;
  --accent-light: #dbeafe;
  --accent-soft: rgba(37, 99, 235, 0.08);

  --danger: #dc2626;
  --ok: #059669;
  --warning: #2563eb;
  --warning-soft: rgba(37, 99, 235, 0.08);

  --shadow-xs: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow: 0 14px 30px -10px rgba(15, 23, 42, 0.14), 0 10px 18px -12px rgba(15, 23, 42, 0.10);
  --radius: 18px;
  --radius2: 12px;
  --radius3: 999px;
  --max: 1400px;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.dark {
  /* ===== TEMA ESCURO ===== */
  --bg: #0f172a;
  --bg2: #1e293b;
  --panel: #1e293b;
  --panel2: #2d3748;
  --panel3: #334155;
  --line: #334155;
  --line-2: #475569;
  --text: #e2e8f0;
  --text-light: #cbd5e1;
  --muted: #94a3b8;
  --placeholder: #64748b;

  --primary: #233877;
  --primary-2: #0a1737;
  --accent: #4dabf7;
  --accent2: #60a5fa;
  --accent3: #3b82f6;
  --accent-light: #1e3a8a;
  --accent-soft: rgba(77, 171, 247, 0.15);

  --danger: #ef4444;
  --ok: #10b981;
  --warning: #3b82f6;
  --warning-soft: rgba(59, 130, 246, 0.15);

  --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 6px 18px rgba(0, 0, 0, 0.4);
  --shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-bottom: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background-color 0.3s;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  object-fit: contain;
  border: 2px solid white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.brand__name {
  font-weight: 900;
  line-height: 1.15;
  color: white;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand__tag {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.theme-toggle {
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: white;
  font-size: 1.2rem;
  transition: all 0.2s;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.pill {
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
  white-space: nowrap;
}

.topbar__btn,
.topbar__link {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: white;
  color: var(--primary);
  cursor: pointer;
  transition: all .18s ease;
  font-weight: 700;
  box-shadow: var(--shadow-xs);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  height: 40px;
  white-space: nowrap;
}

.topbar__btn:hover,
.topbar__link:hover {
  background: var(--accent2);
  color: white;
  border-color: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.16);
}

/* Hero */
.hero {
  padding: 30px 0 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -0.03em;
  color: var(--primary);
  font-weight: 900;
  line-height: 1.08;
}

.hero p {
  margin: 14px 0 12px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 72ch;
}

/* Busy */
.busy {
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel2);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-xs);
}

.busy.subtle {
  background: var(--panel2);
  border: 1px solid var(--line);
  box-shadow: none;
}

/* Cards */
.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  margin: 22px 0;
  z-index: 1;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.card.subtle {
  box-shadow: none;
  background: var(--panel2);
  border: 1px solid var(--line);
}

.card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.45rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.card__desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
  max-width: 70ch;
}

/* Stats grid */
.stats-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 16px;
}
.stat-item {
  text-align: center;
  flex: 1 1 150px;
  background: var(--panel2);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-xs);
}
.stat-item i {
  font-size: 2rem;
  color: var(--accent2);
}
.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}
.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 20px;
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

@media (max-width: 980px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Fields */
input, select, textarea, button {
  font: inherit;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

input, select, textarea {
  width: 100%;
  border-radius: var(--radius2);
  border: 1.5px solid var(--line);
  background: var(--bg2);
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
  -webkit-appearance: none;
  appearance: none;
  font-size: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--accent2);
  background: var(--bg2);
}

input[type="date"] {
  -webkit-appearance: auto;
  appearance: auto;
  min-height: 52px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  filter: invert(0.45);
}

input::placeholder,
textarea::placeholder {
  color: var(--placeholder);
  opacity: 0.95;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: var(--bg2);
  transform: translateY(-1px);
}

select {
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.hint {
  margin-top: 7px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

/* Actions */
.actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.actions.inline {
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 24px;
}

/* Botões padronizados */
.btn {
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  height: 48px;
  font-weight: 800;
  cursor: pointer;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  transition: all .18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  font-size: 1rem;
  box-shadow: 0 10px 18px rgba(26,43,95,0.18);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(26,43,95,0.24);
}

.btn:active {
  transform: translateY(0);
}

.btnSmall {
  border: 1.5px solid var(--line-2);
  background: var(--bg2);
  color: var(--primary);
  padding: 0 16px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .18s ease;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-xs);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.btnSmall:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.16);
}

.spinner {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: white;
  display: inline-block;
  animation: spin .9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Table */
.tableTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.tableTop__desc {
  color: var(--muted);
  font-size: 14px;
}

.pager {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tableWrap {
  overflow: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow-xs);
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.table th,
.table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.table th {
  text-align: left;
  font-size: 12px;
  color: var(--text);
  background: var(--panel2);
  position: sticky;
  top: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.table td {
  font-size: 14px;
  background: var(--panel);
}

.table tbody tr:hover td {
  background: var(--panel2);
}

.name {
  font-weight: 800;
  color: var(--primary);
}

.sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.actionsTd {
  width: 1%;
  white-space: nowrap;
}

.empty {
  color: var(--muted);
  text-align: center;
  padding: 24px;
  font-style: italic;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.muted {
  color: var(--muted);
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--panel2);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.badge--new {
  background: #dbeafe;
  color: #1e3a8a;
  border-color: #a5c9ff;
}
body.dark .badge--new {
  background: #1e3a8a;
  color: #dbeafe;
  border-color: #3b82f6;
}

.badge--review {
  background: #fff3cd;
  color: #856404;
  border-color: #ffe69c;
}
body.dark .badge--review {
  background: #856404;
  color: #fff3cd;
  border-color: #fbbf24;
}

.badge--contact {
  background: #e2e3e5;
  color: #41464b;
  border-color: #d3d6d8;
}
body.dark .badge--contact {
  background: #4b5563;
  color: #e5e7eb;
  border-color: #6b7280;
}

.badge--interview {
  background: #cff4fc;
  color: #055160;
  border-color: #b6effb;
}
body.dark .badge--interview {
  background: #055160;
  color: #cff4fc;
  border-color: #06b6d4;
}

.badge--ok {
  background: #d1e7dd;
  color: #0a3622;
  border-color: #a3cfbb;
}
body.dark .badge--ok {
  background: #0a3622;
  color: #d1e7dd;
  border-color: #10b981;
}

.badge--no {
  background: #f8d7da;
  color: #58151c;
  border-color: #f1aeb5;
}
body.dark .badge--no {
  background: #58151c;
  color: #f8d7da;
  border-color: #ef4444;
}

/* Drawer */
.drawerBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 50;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(540px, 100%);
  background: var(--panel);
  border-left: 1px solid var(--line);
  box-shadow: var(--shadow);
  transform: translateX(110%);
  transition: transform .22s ease;
  z-index: 60;
  display: flex;
  flex-direction: column;
}

.drawer.open {
  transform: translateX(0);
}

.drawer.open ~ .drawerBackdrop {
  opacity: 1;
  pointer-events: auto;
}

.drawer__head {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  background: var(--panel2);
}

.drawer__id {
  color: var(--muted);
  font-size: 13px;
}

.drawer__title {
  font-weight: 900;
  font-size: 1.35rem;
  margin-top: 2px;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.drawer__sub {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.drawer__body {
  padding: 20px;
  overflow: auto;
}

/* Blocks internos */
.block {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
}

.block.subtle {
  box-shadow: none;
  background: var(--panel2);
  border: 1px solid var(--line);
}

.block__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 1.05rem;
}

.block__desc {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.block__text {
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.block__meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.pre {
  white-space: pre-wrap;
  word-break: break-word;
}

.link {
  display: inline-block;
  color: var(--accent2);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

.kv {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kv__row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}

.kv__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.kv__k {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.kv__v {
  font-size: 14px;
  color: var(--text);
  word-break: break-word;
  text-align: right;
  font-weight: 700;
}

/* Notas com fundo suave */
.note-item {
  background-color: var(--accent-soft);
  border-radius: 12px;
  padding: 12px;
  margin-top: 12px;
  border-left: 4px solid var(--accent2);
}

.note__meta,
.hist__meta {
  color: var(--muted);
  font-size: 13px;
}

.note__text,
.hist__text {
  margin-top: 8px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.doc:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.doc__name {
  font-weight: 800;
  color: var(--primary);
}

.doc__meta {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

/* Toast */
.toast {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.toast--success {
  border-color: var(--ok);
  background: rgba(5, 150, 105, 0.1);
  color: var(--ok);
}

.toast--error {
  border-color: var(--danger);
  background: rgba(220, 38, 38, 0.1);
  color: var(--danger);
}

/* Auth page */
.auth {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: 24px 0 32px;
}

.auth__box {
  width: min(560px, 100%);
}

.auth__box h1 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--primary);
  font-weight: 900;
  line-height: 1.08;
}

.auth__box p {
  margin: 12px 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}

.small {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
}

/* Modal */
.modalBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 70;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100% - 24px));
  transform: translate(-50%, -50%) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 80;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.modalBackdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal__head {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  background: var(--panel2);
}

.modal__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.modal__sub {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.modal__body {
  padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  background: var(--panel2);
  position: relative;
  z-index: 1;
  margin-top: 48px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: var(--muted);
  font-size: 14px;
  gap: 12px;
}

.footer__small {
  color: var(--placeholder);
}

/* Responsividade */
@media (max-width: 680px) {
  .footer__inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  input, select, textarea {
    font-size: 16px;
    padding: 16px;
  }
  .card {
    padding: 18px;
    border-radius: 16px;
  }
  .card__title {
    font-size: 1.25rem;
  }
  .stats-grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }
  .topbar__inner {
    flex-direction: column;
    gap: 12px;
  }
  .brand {
    flex-direction: column;
    text-align: center;
  }
  .hero h1 {
    font-size: 26px;
  }
  .tableTop {
    flex-direction: column;
    align-items: stretch;
  }
  .pager {
    justify-content: center;
  }
  .actions {
    flex-direction: column;
    width: 100%;
  }
  .btn,
  .btnSmall {
    width: 100%;
    justify-content: center;
  }
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .modal__head {
    flex-direction: column;
    align-items: stretch;
  }
  .kv__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .kv__v {
    text-align: left;
  }
  .doc {
    flex-direction: column;
    align-items: flex-start;
  }
  .drawer {
    width: 100%;
  }
  .modal {
    max-height: 90vh;
    overflow-y: auto;
  }
  .tableWrap {
    overflow-x: auto;
  }
  .topbar__right {
    justify-content: center;
    width: 100%;
  }
}

/* Switch toggle */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
}
input:checked + .slider {
  background-color: var(--accent2);
}
input:focus + .slider {
  box-shadow: 0 0 1px var(--accent2);
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}