:root {
  --primary: #0f766e;
  --primary-light: #14b8a6;
  --success: #16a34a;
  --warning: #d97706;
  --danger: #dc2626;
  --text: #111827;
  --muted: #6b7280;
  --bg: #f9fafb;
  --card: #ffffff;
  --border: #e5e7eb;
  --radius-card: 12px;
  --radius-input: 8px;
  --sidebar-width: 240px;
  --content-max: 1200px;
  --content-narrow-max: 720px;
  --page-padding-x: 1rem;
  --page-padding-y: 1rem;
}

* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-tap-highlight-color: transparent;
}
h1 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin: 0 0 1rem;
}
h2 {
  font-size: 1.125rem;
  line-height: 1.3;
}
a { color: var(--primary); text-decoration: none; }
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--page-padding-y) var(--page-padding-x);
  padding-left: max(var(--page-padding-x), env(safe-area-inset-left));
  padding-right: max(var(--page-padding-x), env(safe-area-inset-right));
}
.container-narrow {
  width: 100%;
  max-width: var(--content-narrow-max);
  margin: 0 auto;
  padding: var(--page-padding-y) var(--page-padding-x);
  padding-left: max(var(--page-padding-x), env(safe-area-inset-left));
  padding-right: max(var(--page-padding-x), env(safe-area-inset-right));
}
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--card); border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
}
.site-header-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.site-tagline { color: var(--muted); font-size: 0.875rem; }
.brand { font-weight: 700; color: var(--primary); }
.app-shell { min-height: 100vh; }
.app-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.app-topbar-brand { min-width: 0; }
.app-topbar-tagline {
  color: var(--muted);
  font-size: 0.8125rem;
  margin-top: 0.1rem;
}
.sidebar-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}
.sidebar-toggle:hover,
.sidebar-toggle:focus-visible {
  color: var(--primary);
  border-color: var(--primary-light);
  outline: none;
}
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(17, 24, 39, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.sidebar-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
body.sidebar-open { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sidebar {
  display: flex;
  flex-direction: column;
  width: min(280px, 86vw);
  flex-shrink: 0;
  background: var(--card);
  border-right: 1px solid var(--border);
  padding: 1.25rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  transform: translateX(-105%);
  transition: transform 0.25s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sidebar.is-open { transform: translateX(0); }
.sidebar-brand {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sidebar-tagline { color: var(--muted); font-size: 0.875rem; margin-top: 0.15rem; }
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-input);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9375rem;
}
.sidebar-nav .nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--muted);
}
.sidebar-nav .nav-icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.sidebar-nav .nav-label {
  line-height: 1.2;
}
.sidebar-nav a:hover { background: var(--bg); color: var(--primary); }
.sidebar-nav a:hover .nav-icon { color: var(--primary); }
.sidebar-nav a.active { background: #ecfdf5; color: var(--primary); }
.sidebar-nav a.active .nav-icon { color: var(--primary); }
.sidebar-nav .nav-logout { margin-top: auto; color: var(--muted); }
.sidebar-nav .nav-logout .nav-icon { color: inherit; }
.sidebar-nav .nav-logout:hover { color: var(--danger); background: #fee2e2; }
.sidebar-nav .nav-logout:hover .nav-icon { color: var(--danger); }
.app-main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  width: 100%;
}
.app-main > main {
  flex: 1;
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 1rem; margin-bottom: 1rem;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.75rem 1rem; border-radius: var(--radius-input);
  border: none; font-weight: 600; cursor: pointer; width: 100%;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-secondary { background: #fff; color: var(--primary); border: 1px solid var(--border); }
.btn-row { display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
.form-group { margin-bottom: 1rem; }
label { display: block; font-size: 0.875rem; color: var(--muted); margin-bottom: 0.35rem; }
label:has(input[type="checkbox"]) {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0;
  color: var(--text);
  cursor: pointer;
}
input, select, textarea {
  width: 100%; padding: 0.75rem; border: 1px solid var(--border);
  border-radius: var(--radius-input); font: inherit; background: #fff;
}
input::placeholder,
textarea::placeholder { color: var(--muted); opacity: 0.75; }
input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--primary);
}
.password-field { position: relative; }
.password-field input { padding-right: 2.75rem; }
.password-toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: var(--radius-input);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}
.password-toggle:hover,
.password-toggle:focus-visible { color: var(--primary); outline: none; }
.password-toggle .icon-hide { display: none; }
.password-toggle.is-visible .icon-show { display: none; }
.password-toggle.is-visible .icon-hide { display: block; }
.chip-group { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  min-height: 48px; min-width: 88px; padding: 0.75rem 1rem;
  border: 1px solid var(--border); border-radius: 999px; background: #fff; cursor: pointer;
}
.chip.active { background: var(--primary-light); color: #fff; border-color: var(--primary-light); }
.badge { display: inline-block; padding: 0.2rem 0.55rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }
.badge-neutral { background: #e5e7eb; color: #374151; }
.badge-info { background: #dbeafe; color: #1d4ed8; }
.badge-success { background: #dcfce7; color: var(--success); }
.badge-warning { background: #fef3c7; color: var(--warning); }
.badge-danger { background: #fee2e2; color: var(--danger); }
.kpi-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.filter-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
.layout-grid-wide {
  display: grid;
  gap: 1rem;
}
.detail-split {
  display: grid;
  gap: 1rem;
}
.kpi-value { font-size: 1.5rem; font-weight: 700; }
.kpi-label { color: var(--muted); font-size: 0.875rem; }
.page-with-nav { padding-bottom: 0; }
.step-indicator {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.step-dot {
  flex: 1;
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: #d1d5db;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}
.step-dot.upcoming { background: #d1d5db; }
.step-dot.completed { background: var(--primary); }
.step-dot.current {
  background: var(--primary-light);
  transform: scaleY(1.2);
  box-shadow: 0 0 0 2px var(--card), 0 0 0 3px var(--primary-light);
}
.step-dot.current.valid {
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--card), 0 0 0 3px var(--primary);
}
.form-step { display: none; }
.form-step.active { display: block; }
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
table { width: 100%; border-collapse: collapse; }
th, td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
th {
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}
.visit-card {
  display: grid;
  gap: 0.5rem;
}
.visit-card .btn,
.visit-card .btn-row {
  margin-top: 0.15rem;
}
.messages { list-style: none; padding: 0; margin: 0 0 1rem; }
.messages li { padding: 0.75rem 1rem; border-radius: var(--radius-input); margin-bottom: 0.5rem; }
.messages .success { background: #dcfce7; }
.messages .error { background: #fee2e2; }
.preview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.preview-item { position: relative; }
.preview-grid img { width: 100%; border-radius: var(--radius-input); object-fit: cover; aspect-ratio: 4/3; }
.preview-remove { margin-top: 0.35rem; width: 100%; min-height: 44px; border: 1px solid var(--border); border-radius: var(--radius-input); background: #fff; color: var(--danger); cursor: pointer; }
.preview-file-label {
  margin: 0;
  padding: 1rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-input);
  background: var(--bg);
  font-size: 0.875rem;
  word-break: break-word;
}
.proof-photo-actions .btn {
  min-height: 44px;
}
.form-step.active .step-actions-sticky {
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin-top: 1rem;
  padding-top: 0.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--card) 28%);
}
.form-step.active .step-actions .btn {
  touch-action: manipulation;
}
.camera-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(17, 24, 39, 0.65);
}
.camera-modal[hidden] {
  display: none !important;
}
.camera-modal-card {
  width: min(100%, 480px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1rem;
}
.camera-modal-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
}
.camera-modal video {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-input);
  background: #000;
  margin-bottom: 0.75rem;
}
.step-error { color: var(--danger); font-size: 0.9rem; margin: 0 0 0.75rem; }
.alert { padding: 0.75rem 1rem; border-radius: var(--radius-input); margin-bottom: 0.75rem; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.pagination-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.pagination-meta { color: var(--muted); font-size: 0.875rem; font-weight: 600; }
.employer-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: #fff;
  margin-bottom: 1rem;
}
.location-map {
  width: 100%;
  height: 220px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  overflow: hidden;
  background: #e5e7eb;
}
.location-map-meta {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
}
.page-header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.page-header h1 {
  margin: 0;
  flex: 1 1 100%;
  min-width: 0;
}
.page-header > .btn,
.page-header-actions {
  width: 100%;
}
.page-header-actions {
  display: grid;
  gap: 0.5rem;
}
.page-header .btn,
.page-header-actions .btn {
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.section-header h2 {
  margin: 0;
  flex: 1 1 100%;
}
.section-header > .btn,
.section-header > .section-btn,
.section-header > .btn-with-icon {
  width: 100%;
}
.section-header > .icon-btn,
.section-header > .table-actions {
  width: auto;
  align-self: flex-end;
}
.desktop-only { display: none !important; }
.mobile-only { display: block; }
.data-card-list {
  display: grid;
  gap: 0.75rem;
}
.data-card {
  display: grid;
  gap: 0.4rem;
}
.data-card-title {
  font-size: 1rem;
  line-height: 1.3;
}
.data-card-meta {
  color: var(--muted);
  font-size: 0.875rem;
}
.data-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.data-card-label {
  color: var(--muted);
  flex-shrink: 0;
}
.data-card-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.35rem;
}
.data-card-actions .btn-row {
  width: 100%;
}
.filter-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.filter-chips .btn {
  min-height: 44px;
  padding: 0.65rem 0.5rem;
  font-size: 0.8125rem;
}
.list-divider {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.text-muted { color: var(--muted); }
.text-danger { color: var(--danger); }
.text-center { text-align: center; }
.mt-sm { margin-top: 0.75rem; }
.inline-actions { width: 100%; }
.pagination-bar .btn-row {
  width: 100%;
}
.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: #fff;
  color: var(--primary);
  flex-shrink: 0;
}
.icon-btn:hover { background: var(--bg); color: var(--primary); }
.icon-btn svg { width: 1rem; height: 1rem; }
.section-btn {
  width: auto;
  min-height: 40px;
  padding: 0.5rem 0.85rem;
}
.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.btn-with-icon svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.table-actions {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.inline-delete-form {
  display: inline;
  margin: 0;
}
.icon-btn-danger { color: var(--danger); }
.icon-btn-danger:hover { background: #fee2e2; color: var(--danger); }
.searchable-select { position: relative; }
.searchable-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 25;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  max-height: 240px;
  overflow-y: auto;
}
.searchable-select-option {
  display: block;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: none;
  background: transparent;
  text-align: left;
  font: inherit;
  color: var(--text);
  cursor: pointer;
}
.searchable-select-option:hover,
.searchable-select-option:focus {
  background: var(--bg);
  color: var(--primary);
  outline: none;
}
#employer-details.is-locked {
  opacity: 0.85;
}
#employer-details.is-locked .location-map-wrap {
  pointer-events: none;
}
#employer-details.is-locked #employer-logo {
  display: none;
}
#contact-details.is-locked .chip[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}
@media (max-width: 639px) {
  input,
  select,
  textarea {
    font-size: 16px;
  }
  .chip {
    flex: 1 1 calc(50% - 0.25rem);
    min-width: 0;
  }
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .pagination-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .responsive-table thead {
    display: none;
  }
  .responsive-table table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }
  .responsive-table tr {
    margin-bottom: 0.75rem;
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--card);
  }
  .responsive-table td {
    border: none;
    padding: 0.3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: right;
  }
  .responsive-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--muted);
    font-size: 0.8125rem;
    text-align: left;
    flex: 1;
  }
  .responsive-table td.actions-cell {
    justify-content: flex-end;
    padding-top: 0.5rem;
  }
  .responsive-table td.actions-cell::before {
    display: none;
  }
  .responsive-table .table-actions {
    width: 100%;
    justify-content: flex-end;
  }
  .section-header > .btn-with-icon {
    width: 100%;
  }
}
/* Tablet portrait and up */
@media (min-width: 640px) {
  :root {
    --page-padding-x: 1.25rem;
    --page-padding-y: 1.25rem;
  }
  h1 { font-size: 1.75rem; margin-bottom: 1rem; }
  .location-map { height: 280px; }
  .desktop-only { display: block !important; }
  table.desktop-only { display: table; }
  .mobile-only { display: none !important; }
  .kpi-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .btn-row { grid-template-columns: 1fr 1fr; }
  .preview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-header {
    flex-wrap: nowrap;
    align-items: center;
  }
  .page-header h1 {
    flex: 1;
  }
  .page-header > .btn {
    width: auto;
    margin-left: auto;
  }
  .page-header-actions {
    display: flex;
    width: auto;
    margin-left: auto;
    gap: 0.5rem;
  }
  .page-header-actions .btn {
    width: auto;
  }
  .section-header {
    flex-wrap: nowrap;
    align-items: center;
  }
  .section-header h2 {
    flex: 1;
  }
  .section-header > .btn,
  .section-header > .section-btn {
    width: auto;
  }
  .section-header > .icon-btn {
    width: 2.25rem;
  }
  .section-header > .btn-with-icon {
    width: auto;
  }
  .filter-chips {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .inline-actions {
    width: auto;
  }
  .pagination-bar .btn-row {
    width: auto;
  }
  .app-topbar { display: none; }
  .sidebar-backdrop { display: none; }
  .has-sidebar .app-shell { display: flex; }
  .has-sidebar .sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    width: var(--sidebar-width);
    transform: none;
    transition: none;
    box-shadow: none;
  }
  .has-sidebar .sidebar.is-open { transform: none; }
}
/* Tablet landscape */
@media (min-width: 768px) {
  :root {
    --sidebar-width: 248px;
    --page-padding-x: 1.5rem;
  }
  .card { padding: 1.15rem 1.25rem; }
  .filter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  th, td { padding: 0.85rem 1rem; }
}
/* Laptop */
@media (min-width: 1024px) {
  :root {
    --sidebar-width: 260px;
    --content-max: 1280px;
    --content-narrow-max: 800px;
    --page-padding-x: 2rem;
    --page-padding-y: 1.5rem;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .card { padding: 1.25rem 1.5rem; }
  .kpi-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .filter-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .location-map { height: 320px; }
  .preview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detail-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  .layout-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  .layout-grid-wide > .card,
  .detail-split > .card {
    margin-bottom: 0;
  }
  .table-wrap {
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    background: var(--card);
  }
  .table-wrap table {
    margin: 0;
  }
  .table-wrap thead th {
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .sidebar-nav a {
    min-height: 42px;
    padding: 0.6rem 0.9rem;
  }
}
/* Desktop / large monitors */
@media (min-width: 1280px) {
  :root {
    --content-max: 1360px;
    --content-narrow-max: 840px;
    --page-padding-x: 2.25rem;
  }
  .kpi-value { font-size: 1.75rem; }
  .layout-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1536px) {
  :root {
    --content-max: 1440px;
    --sidebar-width: 272px;
  }
  .layout-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (prefers-reduced-motion: reduce) {
  .sidebar,
  .sidebar-backdrop {
    transition: none;
  }
}
.logout-form { display: inline; margin: 0; }
.auth-form p {
  margin-bottom: 1rem;
}
.auth-form label {
  display: block;
  margin-bottom: 0.35rem;
}
.auth-form input {
  width: 100%;
}
.nav-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--primary);
  cursor: pointer;
  text-decoration: none;
}
