:root {
  /* Palet Warna Neo-Brutalism */
  --bg: #e5e5f7;
  --surface: #ffffff;
  --ink: #000000;
  --ink-soft: #222222;
  --primary: #c084fc;
  /* Ungu terang */
  --primary-deep: #a855f7;
  --gold: #fde047;
  /* Kuning komik */
  --sage: #6ee7b7;
  /* Hijau mint (pemasukan) */
  --amber: #f9a8d4;
  /* Pink */
  --terracotta: #ff90a0;
  /* Merah terang (pengeluaran) */
  --blue: #93c5fd;
  --line: #000000;
  --bw: 3px;
  /* Ketebalan border standar */
}

html,
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Lexend', sans-serif;
  background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px), radial-gradient(#cbd5e1 1.5px, var(--bg) 1.5px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
}

.mono {
  font-family: 'Lexend', sans-serif;
  font-weight: 600;
}

.display {
  font-family: 'Lexend', sans-serif;
  font-weight: 800;
}

.phone {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  position: relative;
  border-left: var(--bw) solid var(--ink);
  border-right: var(--bw) solid var(--ink);
}

@media (max-width: 480px) {
  .phone {
    border-left: none;
    border-right: none;
  }
}

/* ---- Passbook header ---- */
.passbook {
  background: var(--gold);
  color: var(--ink);
  padding: 26px 22px 34px;
  border-bottom: var(--bw) solid var(--ink);
  box-shadow: 0px 8px 0px var(--ink);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.passbook .eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
  background: #fff;
  border: 2px solid var(--ink);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 2px 2px 0px var(--ink);
}

.passbook .saldo {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
}

.passbook .saldo-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 2px;
}

/* ---- KPI scroll row ---- */
.kpi-row-wrapper {
  padding: 16px 18px 24px 18px;
  margin-top: -10px;
}

.kpi-row {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 8px;
  padding-right: 20px;
}

.kpi-row::-webkit-scrollbar {
  display: none;
}

.kpi-card {
  scroll-snap-align: start;
  min-width: 150px;
  flex: 0 0 auto;
  background: var(--surface);
  border: var(--bw) solid var(--ink);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 4px 4px 0px var(--ink);
  transition: transform 0.2s;
}

.kpi-card:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--ink);
}

.kpi-card .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.kpi-card .value {
  font-size: 17px;
  font-weight: 800;
}

.app-section {
  padding: 18px;
}

.section-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-title a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
  background: var(--gold);
  border: 2px solid var(--ink);
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 2px 2px 0px var(--ink);
  transition: 0.1s;
}

.section-title a:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.card-custom {
  background: var(--surface);
  border: var(--bw) solid var(--line);
  border-radius: 12px;
  padding: 14px;
  box-shadow: 5px 5px 0px var(--ink);
}

/* ---- Ledger rows ---- */
.ledger-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 2px dashed var(--ink);
}

.ledger-row:last-child {
  border-bottom: none;
}

.dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  flex-shrink: 0;
  border-radius: 3px;
}

.dot-masuk {
  background: var(--sage);
}

.dot-keluar {
  background: var(--terracotta);
}

.dot-transfer {
  background: var(--blue);
}

.ledger-mid {
  flex: 1;
  min-width: 0;
}

.ledger-mid .kat {
  font-size: 14px;
  font-weight: 700;
}

.ledger-mid .ket {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
}

.ledger-amt {
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  color: var(--ink);
}

/* ---- Target cards ---- */
.target-card+.target-card {
  margin-top: 14px;
}

.target-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.target-name {
  font-size: 15px;
  font-weight: 800;
}

.status-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0px var(--ink);
}

.bar-track {
  height: 12px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-right: 2px solid var(--ink);
}

.target-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ---- Anggaran bars ---- */
.bud-card+.bud-card {
  margin-top: 16px;
}

.bud-head {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
}

.bud-head .nama {
  font-weight: 800;
}

.bud-head .pct {
  color: var(--ink-soft);
  font-weight: 700;
}

.bud-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* ---- Chips ---- */
.chip-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 0 18px 14px;
  scroll-snap-type: x proximity;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar {
  display: none;
}

.chip {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  border: var(--bw) solid var(--ink);
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
  box-shadow: 3px 3px 0px var(--ink);
  transition: 0.1s;
  text-decoration: none;
  display: inline-block;
}

.chip.active {
  background: var(--primary);
  color: var(--ink);
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--ink);
}

/* ---- Bottom nav ---- */
.navbar-bottom {
  position: sticky;
  bottom: 0;
  margin-top: auto;
  background: var(--surface);
  border-top: var(--bw) solid var(--line);
  display: flex;
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  z-index: 5;
}

.navbtn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.navbtn i {
  font-size: 18px;
  transition: 0.2s;
}

.navbtn.active {
  color: var(--primary-deep);
  font-weight: 800;
}

.navbtn.active i {
  transform: scale(1.2);
  text-shadow: 1px 1px 0px var(--ink);
  color: var(--gold);
}

/* ---- FAB ---- */
.fab-wrap {
  position: fixed;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  pointer-events: none;
  z-index: 50;
}

.fab {
  position: absolute;
  right: 18px;
  bottom: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--ink);
  border: var(--bw) solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 4px 4px 0px var(--ink);
  font-size: 24px;
  pointer-events: auto;
  transition: 0.1s;
}

.fab:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--ink);
}

.top-bar {
  padding: 24px 18px 10px;
}

.top-bar .title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  text-shadow: 2px 2px 0px var(--gold);
}

.top-bar .subtitle {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-top: 4px;
}

.tab-pane-app {
  display: block;
}

/* Offcanvas */
.offcanvas {
  border: var(--bw) solid var(--ink) !important;
  border-bottom: none !important;
}

.offcanvas-header {
  border-bottom: var(--bw) solid var(--ink);
  background: var(--gold);
  border-radius: 20px;
}

.btn-close {
  opacity: 1;
  filter: invert(1);
}

.offcanvas-body .form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.offcanvas-body .form-select,
.offcanvas-body .form-control {
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  box-shadow: 3px 3px 0px var(--ink);
  margin-bottom: 8px;
}

.offcanvas-body .form-control:focus,
.offcanvas-body .form-select:focus {
  border-color: var(--ink);
  transform: translate(3px, 3px);
  outline: none;
  box-shadow: none;
}

.btn-primary-custom {
  width: 100%;
  background: var(--primary);
  color: var(--ink);
  border: var(--bw) solid var(--ink);
  border-radius: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 4px 4px 0px var(--ink);
  margin-top: 10px;
  transition: 0.1s;
}

.btn-primary-custom:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 var(--ink);
}

/* ---- Pengaturan / master data (Neo Brutalism Style) ---- */
#accMaster .accordion-item {
  border: var(--bw) solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 4px 4px 0px var(--ink);
}

#accMaster .accordion-button {
  font-size: 14px;
  font-weight: 800;
  background: var(--surface);
  color: var(--ink);
  padding: 14px 16px;
  border-bottom: var(--bw) solid var(--ink);
}

#accMaster .accordion-button:not(.collapsed) {
  background: var(--blue);
  color: var(--ink);
  box-shadow: none;
}

#accMaster .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

#accMaster .accordion-body {
  padding: 14px;
  background: var(--surface);
}

#accMaster .accordion-button .count-badge {
  font-size: 12px;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50px;
  padding: 2px 10px;
  margin-left: 8px;
  box-shadow: 2px 2px 0px var(--ink);
}

.master-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 2px dashed var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.master-row:last-of-type {
  border-bottom: none;
}

.master-row .sub-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 1px 6px;
  margin-left: 6px;
}

.master-del {
  background: var(--terracotta);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 2px 2px 0px var(--ink);
  transition: 0.1s;
}

.master-del:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.master-add {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.master-add input,
.master-add select {
  flex: 1;
  min-width: 120px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  background: #fff;
  font-weight: 600;
}

.master-add input:focus,
.master-add select:focus {
  outline: none;
  border-color: var(--primary-deep);
}

.master-add button {
  background: var(--primary);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 0 18px;
  font-size: 16px;
  box-shadow: 3px 3px 0px var(--ink);
  transition: 0.1s;
}

.master-add button:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--ink);
}

.master-error {
  font-size: 12px;
  font-weight: 700;
  color: #7a1f2b;
  background: var(--terracotta);
  border: 2px solid var(--ink);
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 8px;
  display: none;
}

/* ---- Loading state saat AJAX navigasi ---- */
#app-content.memuat {
  opacity: .5;
  pointer-events: none;
  transition: opacity .15s ease;
}


/* ---- Top bar dengan tombol aksi (ikon gear buka offcanvas Aturan Anggaran) ---- */
.top-bar-gear {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  margin-top: 2px;
  padding: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  border: var(--bw) solid var(--ink);
  border-radius: 10px;
  box-shadow: 3px 3px 0px var(--ink);
  font-size: 16px;
  cursor: pointer;
  transition: 0.1s;
}

.top-bar-gear:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--ink);
}

/* ---- Baris Aturan Anggaran (list di dalam offcanvas) ---- */
.aturan-row {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  position: relative;
  padding-right: 38px;
}

.aturan-row-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aturan-row-nama {
  font-size: 14px;
  font-weight: 700;
}

.aturan-row {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  position: relative;
  padding-right: 70px;
}

.aturan-row-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aturan-row-nama {
  font-size: 14px;
  font-weight: 700;
}

.aturan-row-pct {
  font-size: 12px;
  font-weight: 800;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 2px 10px;
  box-shadow: 2px 2px 0px var(--ink);
}

.aturan-row-kategori {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.aturan-row-aksi {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 6px;
}

.master-edit {
  background: var(--blue);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  box-shadow: 2px 2px 0px var(--ink);
  transition: 0.1s;
}

.master-edit:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.btn-batal-edit {
  background: none;
  border: none;
  color: var(--primary-deep);
  font-weight: 700;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

/* ---- Select2 multi-select kategori di offcanvas "Aturan Anggaran Bulanan" ---- */
.offcanvas-body .select2-container--default .select2-selection--multiple {
  border: 2px solid var(--ink) !important;
  border-radius: 8px !important;
  background: #fff;
  box-shadow: 3px 3px 0px var(--ink);
  min-height: 42px;
  padding: 4px 6px;
  margin-bottom: 8px;
}

.offcanvas-body .select2-container--default.select2-container--focus .select2-selection--multiple,
.offcanvas-body .select2-container--default.select2-container--open .select2-selection--multiple {
  transform: translate(3px, 3px);
  box-shadow: none;
}

.offcanvas-body .select2-selection__choice {
  background: var(--gold) !important;
  border: 2px solid var(--ink) !important;
  border-radius: 6px !important;
  padding: 2px 8px !important;
  font-family: 'Lexend', sans-serif;
  font-weight: 700 !important;
  font-size: 12px !important;
  color: var(--ink) !important;
  display: flex;
  align-items: center;
  gap: 4px;
}

.offcanvas-body .select2-selection__choice__remove {
  color: var(--ink) !important;
  border: none !important;
  font-weight: 800 !important;
}

.offcanvas-body .select2-selection__choice__remove:hover {
  background: transparent !important;
  color: #7a1f2b !important;
}


/* ---- Halaman Login ---- */
.auth-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: var(--bw) solid var(--ink);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 6px 6px 0px var(--ink);
}

.auth-card-header {
  text-align: center;
  margin-bottom: 22px;
}

.auth-card-header i {
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 3px 3px 0px var(--ink);
  display: inline-flex;
  margin-bottom: 10px;
}

.auth-card .form-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.auth-card .form-control {
  border: 2px solid var(--ink);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  box-shadow: 3px 3px 0px var(--ink);
  padding: 10px 12px;
}

.auth-card .form-control:focus {
  border-color: var(--ink);
  transform: translate(3px, 3px);
  outline: none;
  box-shadow: none;
}

.btn-logout {
  width: 100%;
  background: var(--terracotta);
  color: var(--ink);
  border: var(--bw) solid var(--ink);
  border-radius: 8px;
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 3px 3px 0px var(--ink);
  transition: 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-logout:active {
  transform: translate(3px, 3px);
  box-shadow: 0 0 0 var(--ink);
}


/* ---- Banner "Pasang aplikasi ini" (PWA install prompt) ---- */
.install-banner {
  position: fixed;
  left: 50%;
  bottom: calc(72px + env(safe-area-inset-bottom));
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 398px;
  background: var(--surface);
  border: var(--bw) solid var(--ink);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 5px 5px 0px var(--ink);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
}

.install-banner-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--gold);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.install-banner-text {
  flex: 1;
  min-width: 0;
}

.install-banner-title {
  font-size: 13px;
  font-weight: 800;
}

.install-banner-sub {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.3;
}

.install-banner-pasang {
  background: var(--primary);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 2px 2px 0px var(--ink);
  flex-shrink: 0;
  transition: 0.1s;
}

.install-banner-pasang:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.install-banner-tutup {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 800;
  color: var(--ink-soft);
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
}

.target-manage-row {
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  position: relative;
  padding-right: 70px;
}

.target-manage-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.target-manage-nama {
  font-size: 14px;
  font-weight: 700;
}

.target-manage-aksi {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 6px;
}

.master-del-disabled {
  background: #eee;
  border: 2px solid var(--ink);
  color: var(--ink-soft);
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  opacity: .6;
  cursor: not-allowed;
}

/* ---- Pencarian transaksi ---- */
.search-wrap {
  position: relative;
  padding: 0 18px 14px;
}

.search-wrap i {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-soft);
  font-size: 14px;
}

.search-wrap input {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px 12px 10px 38px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  box-shadow: 3px 3px 0px var(--ink);
  font-family: 'Lexend', sans-serif;
  color: var(--ink);
}

.search-wrap input:focus {
  outline: none;
  border-color: var(--ink);
  transform: translate(3px, 3px);
  box-shadow: none;
}

/* ---- Tombol hapus di list transaksi ---- */
.ledger-del {
  background: var(--terracotta);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 0px var(--ink);
  transition: 0.1s;
}

.ledger-del:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.pengguna-row {
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  position: relative;
  padding-right: 70px;
}

.pengguna-row-main {
  display: flex;
  flex-direction: column;
}

.pengguna-row-nama {
  font-size: 14px;
  font-weight: 700;
}

.pengguna-row-email {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
}

.pengguna-row-aksi {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 6px;
  align-items: center;
}

.pengguna-badge-anda {
  font-size: 11px;
  font-weight: 800;
  background: var(--sage);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 3px 10px;
  box-shadow: 2px 2px 0px var(--ink);
}

.pengguna-form input {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  background: #fff;
  box-shadow: 3px 3px 0px var(--ink);
  font-family: 'Lexend', sans-serif;
  color: var(--ink);
}

.pengguna-form input:focus {
  outline: none;
  border-color: var(--ink);
  transform: translate(3px, 3px);
  box-shadow: none;
}

/* test */