/* ============================================================
   SignPact Demo Stylesheet
   ============================================================ */

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

:root {
  --purple:       #534AB7;
  --purple-light: #EEEDFE;
  --purple-mid:   #AFA9EC;
  --purple-dark:  #26215C;
  --teal:         #1D9E75;
  --teal-light:   #EAF3DE;
  --teal-dark:    #0F6E56;
  --amber:        #854F0B;
  --amber-light:  #FAEEDA;
  --green:        #3B6D11;
  --green-light:  #EAF3DE;
  --red:          #A32D2D;
  --red-light:    #FCEBEB;
  --gray-50:      #F1EFE8;
  --gray-100:     #D3D1C7;
  --gray-200:     #B4B2A9;
  --gray-400:     #888780;
  --gray-600:     #5F5E5A;
  --gray-800:     #444441;
  --gray-900:     #2C2C2A;
  --white:        #ffffff;
  --radius-sm:    6px;
  --radius-md:    8px;
  --radius-lg:    12px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  color: var(--gray-900);
  background: #f5f5f3;
  line-height: 1.6;
}

/* ---- NAVBAR ---- */
.navbar {
  background: var(--white);
  border-bottom: 0.5px solid var(--gray-100);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
}
.logo { font-size: 18px; font-weight: 600; color: var(--gray-900); }
.logo-accent { color: var(--purple); }
.nav-links { display: flex; align-items: center; gap: 10px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: inherit;
  transition: opacity .15s;
}
.btn:hover { opacity: .88; }
.btn-primary { background: var(--purple); color: var(--white); }
.btn-outline { background: transparent; color: var(--purple); border: 0.5px solid var(--purple-mid); }
.btn-success { background: var(--teal); color: var(--white); }
.btn-ghost   { background: transparent; color: var(--gray-600); border: 0.5px solid var(--gray-100); }
.btn-lg { padding: 12px 28px; font-size: 15px; }
.btn-sm { padding: 5px 12px; font-size: 12px; }

/* ---- LANDING ---- */
.landing-body { background: #f5f5f3; }

.hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.hero-inner { max-width: 680px; margin: 0 auto; }
.badge {
  display: inline-block;
  background: var(--amber-light);
  color: var(--amber);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 38px;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 17px;
  color: var(--gray-600);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

.features { padding: 3rem 2rem 5rem; }
.features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--white);
  border: 0.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 1rem;
}
.feature-icon.purple { background: var(--purple-light); color: var(--purple); }
.feature-icon.teal   { background: var(--teal-light);   color: var(--teal);   }
.feature-icon.green  { background: var(--green-light);  color: var(--green);  }
.feature-icon.amber  { background: var(--amber-light);  color: var(--amber);  }
.feature-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.feature-body  { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

.footer {
  background: var(--white);
  border-top: 0.5px solid var(--gray-100);
  padding: 1.5rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-note { font-size: 12px; color: var(--gray-400); }

/* ---- DASHBOARD ---- */
.dash-body { background: #f5f5f3; }
.dash-wrap { padding: 1.5rem 2rem; max-width: 1200px; margin: 0 auto; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.topbar-left { display: flex; align-items: center; gap: 12px; }
.topbar-title { font-size: 17px; font-weight: 600; }
.topbar-sub   { font-size: 13px; color: var(--gray-600); }
.user-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-600);
}
.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--purple);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 1.5rem;
}
.metric {
  background: var(--white);
  border: 0.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
}
.metric-label { font-size: 12px; color: var(--gray-600); margin-bottom: 6px; }
.metric-value { font-size: 28px; font-weight: 600; color: var(--gray-900); }
.metric-sub   { font-size: 12px; color: var(--gray-400); margin-top: 4px; }
.metric-sub.up   { color: var(--teal); }
.metric-sub.warn { color: var(--amber); }

.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}
.card {
  background: var(--white);
  border: 0.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}
.card-title { font-size: 14px; font-weight: 600; margin-bottom: 1rem; }
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.data-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.data-table th {
  text-align: left;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  padding: 0 0 8px;
  border-bottom: 0.5px solid var(--gray-100);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.data-table td {
  padding: 10px 0;
  border-bottom: 0.5px solid var(--gray-50);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }

.badge-status {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}
.badge-complete { background: var(--teal-light);   color: var(--teal-dark); }
.badge-pending  { background: var(--amber-light);  color: var(--amber);     }
.badge-sent     { background: var(--purple-light); color: var(--purple);    }
.badge-expired  { background: var(--red-light);    color: var(--red);       }

.action-link {
  font-size: 12px;
  color: var(--purple);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  text-decoration: none;
}

.filter-row { display: flex; gap: 6px; }
.filter-pill {
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  border: 0.5px solid var(--gray-100);
  background: var(--white);
  color: var(--gray-600);
  cursor: pointer;
}
.filter-pill.active { background: var(--purple-light); color: var(--purple); border-color: var(--purple-mid); }

.loc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 0.5px solid var(--gray-50);
}
.loc-item:last-child { border-bottom: none; }
.loc-name { font-size: 13px; font-weight: 500; }
.loc-sub  { font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.loc-count { font-size: 20px; font-weight: 600; text-align: right; }
.loc-count-lbl { font-size: 11px; color: var(--gray-400); text-align: right; }
.bar-track { height: 4px; background: var(--gray-50); border-radius: 2px; margin-top: 6px; width: 140px; }
.bar-fill  { height: 4px; background: var(--purple); border-radius: 2px; }

.tpl-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 0.5px solid var(--gray-50);
}
.tpl-row:last-child { border-bottom: none; }
.tpl-count { color: var(--gray-400); font-size: 12px; }

/* ---- PATIENT FORM ---- */
.patient-body { background: #f5f5f3; }
.patient-wrap { padding: 2rem 1rem; }
.patient-shell { max-width: 620px; margin: 0 auto; }

.patient-header { text-align: center; margin-bottom: 1.5rem; }
.patient-practice { font-size: 16px; font-weight: 600; color: var(--gray-900); }
.patient-sub      { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

.progress {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding-bottom: 4px;
}
.step-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  flex-shrink: 0;
}
.step-dot.done   { background: var(--teal);   color: var(--white); }
.step-dot.active { background: var(--purple); color: var(--white); }
.step-dot.future { background: var(--white); color: var(--gray-400); border: 0.5px solid var(--gray-100); }
.step-label      { font-size: 11px; color: var(--gray-400); white-space: nowrap; }
.step-label.active { color: var(--gray-900); font-weight: 500; }
.step-line { flex: 1; min-width: 12px; height: 1px; background: var(--gray-100); }

.pcard {
  background: var(--white);
  border: 0.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.pcard-title { font-size: 18px; font-weight: 600; color: var(--gray-900); margin-bottom: 4px; }
.pcard-sub   { font-size: 13px; color: var(--gray-600); margin-bottom: 1.25rem; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .75rem;
  margin-top: 1.25rem;
}
.section-label:first-of-type { margin-top: 0; }

.frow   { display: grid; grid-template-columns: 1fr 1fr;     gap: 12px; margin-bottom: 12px; }
.frow-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.frow-1 { display: grid; grid-template-columns: 1fr;         gap: 12px; margin-bottom: 12px; }

.ff { display: flex; flex-direction: column; gap: 5px; }
.ff label { font-size: 12px; color: var(--gray-600); }
.ff input,
.ff select,
.ff textarea {
  font-family: inherit;
  font-size: 14px;
  padding: 9px 11px;
  border: 0.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--gray-900);
  outline: none;
  transition: border-color .15s;
}
.ff input:focus,
.ff select:focus,
.ff textarea:focus { border-color: var(--purple-mid); }
.ff textarea { resize: vertical; min-height: 80px; }

.pill-group { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.pill {
  padding: 6px 14px;
  border: 0.5px solid var(--gray-100);
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  background: var(--white);
  color: var(--gray-600);
  user-select: none;
  transition: all .15s;
}
.pill.sel { background: var(--purple-light); color: var(--purple); border-color: var(--purple-mid); }

.yn-group { display: flex; gap: 8px; margin-top: 6px; }
.yn {
  padding: 6px 18px;
  border: 0.5px solid var(--gray-100);
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  background: var(--white);
  color: var(--gray-600);
  user-select: none;
}
.yn.sel { background: var(--purple-light); color: var(--purple); border-color: var(--purple-mid); }

.add-row-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--purple);
  background: var(--purple-light);
  border: none;
  border-radius: var(--radius-md);
  padding: 6px 14px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 8px;
}

.dyn-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 4px; }
.dyn-table th {
  text-align: left;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
  padding: 5px 6px;
  border-bottom: 0.5px solid var(--gray-100);
}
.dyn-table td { padding: 5px 4px; border-bottom: 0.5px solid var(--gray-50); vertical-align: middle; }
.dyn-table tr:last-child td { border-bottom: none; }
.dyn-table input,
.dyn-table select {
  font-family: inherit;
  font-size: 12px;
  padding: 5px 7px;
  border: 0.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  width: 100%;
}
.rm-btn {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  font-size: 17px;
  padding: 2px 6px;
  font-family: inherit;
}

/* Signature */
.sig-tabs {
  display: flex;
  gap: 0;
  border: 0.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
}
.sig-tab {
  flex: 1;
  padding: 9px;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  background: #f5f5f3;
  color: var(--gray-600);
  border: none;
  font-family: inherit;
  transition: all .15s;
}
.sig-tab.active { background: var(--purple); color: var(--white); font-weight: 500; }

.sig-pad-wrap {
  position: relative;
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius-md);
  background: #f5f5f3;
  overflow: hidden;
  margin-bottom: 8px;
}
.sig-clear-btn {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 12px;
  color: var(--gray-400);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}
.sig-baseline {
  position: absolute;
  bottom: 30px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--gray-100);
  pointer-events: none;
}
.sig-baseline-lbl {
  position: absolute;
  bottom: 10px;
  left: 20px;
  font-size: 11px;
  color: var(--gray-200);
  pointer-events: none;
}

.type-sig-input {
  font-size: 15px;
  padding: 10px 12px;
  border: 0.5px solid var(--gray-100);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--gray-900);
  font-family: inherit;
  width: 100%;
  margin-bottom: 10px;
}
.font-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.font-pill {
  padding: 4px 14px;
  border: 0.5px solid var(--gray-100);
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  background: var(--white);
  color: var(--gray-600);
}
.font-pill.active { border-color: var(--purple); color: var(--purple); background: var(--purple-light); }

.cursive-preview {
  border: 1.5px dashed var(--gray-200);
  border-radius: var(--radius-md);
  background: #f5f5f3;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
}
.cursive-text { font-size: 42px; color: var(--purple-dark); line-height: 1.2; text-align: center; }
.cursive-line { position: absolute; bottom: 28px; left: 20px; right: 20px; height: 1px; background: var(--gray-100); }
.cursive-lbl  { position: absolute; bottom: 10px; left: 20px; font-size: 11px; color: var(--gray-200); }

.consent-box {
  background: #f5f5f3;
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: .75rem;
}
.chk-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gray-900); margin-bottom: 10px; }
.chk-row input[type=checkbox] { margin-top: 2px; flex-shrink: 0; accent-color: var(--purple); }

/* Nav row */
.nav-row { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }

/* Secure note */
.secure-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: var(--gray-400); margin-top: 1rem; }
.secure-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }

/* Done screen */
.done-circle {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--teal); font-weight: 600;
  margin: 0 auto 1rem;
}

/* ---- COMPLETED DOCUMENT ---- */
.doc-body { background: #f5f5f3; }
.doc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 780px;
  margin: 0 auto 1.5rem;
  padding: 1.5rem 1rem 0;
}
.doc-toolbar-left { font-size: 13px; color: var(--gray-600); }

.doc-paper {
  background: var(--white);
  border: 0.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  max-width: 780px;
  margin: 0 auto;
  color: var(--gray-900);
}
.doc-page { padding: 3rem 3.5rem; border-bottom: 3px dashed var(--gray-100); position: relative; }
.doc-page:last-child { border-bottom: none; }
.doc-page-label { position: absolute; top: 1rem; right: 1.5rem; font-size: 10px; color: var(--gray-400); }
.page-break-label { text-align: center; font-size: 11px; color: var(--gray-200); padding: 8px 0; background: var(--gray-50); letter-spacing: .08em; text-transform: uppercase; }

.doc-header { display: flex; align-items: flex-start; justify-content: space-between; padding-bottom: 1.5rem; border-bottom: 1.5px solid var(--gray-900); margin-bottom: 1.5rem; }
.doc-practice-name { font-size: 18px; font-weight: 600; color: var(--purple-dark); }
.doc-practice-addr { font-size: 12px; color: var(--gray-600); margin-top: 4px; line-height: 1.7; }
.doc-meta { text-align: right; font-size: 12px; color: var(--gray-600); line-height: 1.9; }
.doc-meta-badge { display: inline-block; background: var(--purple-light); color: var(--purple); font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 3px; margin-top: 4px; }

.verified-banner { display: flex; align-items: center; gap: 8px; background: var(--teal-light); border: 0.5px solid #97C459; border-radius: var(--radius-md); padding: 8px 14px; margin-bottom: 1.5rem; font-size: 12px; color: #27500A; }

.doc-section { margin-bottom: 1.75rem; }
.doc-section-title { font-size: 11px; font-weight: 600; color: var(--gray-600); text-transform: uppercase; letter-spacing: .07em; border-bottom: 0.5px solid var(--gray-100); padding-bottom: 6px; margin-bottom: 1rem; }

.field-grid   { display: grid; grid-template-columns: 1fr 1fr;     gap: 0; }
.field-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.fi { padding: 8px 0; border-bottom: 0.5px solid var(--gray-50); }
.fi.full  { grid-column: 1 / -1; }
.fi.span2 { grid-column: span 2; }
.fl { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.fv { font-size: 13px; color: var(--gray-900); }
.fv.none { color: var(--gray-200); font-style: italic; }

.doc-body-text { font-size: 12px; color: var(--gray-600); line-height: 1.8; background: var(--gray-50); border-radius: 4px; padding: 12px; margin-bottom: .75rem; }

.doc-sig-block { border: 0.5px solid var(--gray-100); border-radius: 4px; padding: 1rem; margin-top: .75rem; }
.doc-sig-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.sig-label-sm { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.sig-image { font-size: 38px; color: var(--purple-dark); line-height: 1; border-bottom: 1px solid var(--gray-200); padding-bottom: 4px; margin-bottom: 4px; }
.sig-name-print { font-size: 11px; color: var(--gray-600); }
.sig-right { text-align: right; font-size: 11px; color: var(--gray-600); line-height: 1.9; flex-shrink: 0; }
.sig-meta-label { font-size: 10px; color: var(--gray-400); text-transform: uppercase; letter-spacing: .05em; }

.doc-check-item { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--gray-900); margin-bottom: 8px; }
.doc-cbox { width: 12px; height: 12px; border: 1px solid var(--gray-400); border-radius: 2px; flex-shrink: 0; margin-top: 1px; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--teal); font-weight: 600; }

.audit-tbl { width: 100%; border-collapse: collapse; font-size: 11px; }
.audit-tbl th { text-align: left; color: var(--gray-400); font-weight: 500; padding: 6px 10px; border-bottom: 0.5px solid var(--gray-100); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; background: var(--gray-50); }
.audit-tbl td { padding: 7px 10px; border-bottom: 0.5px solid var(--gray-50); color: var(--gray-900); vertical-align: top; }
.audit-tbl tr:last-child td { border-bottom: none; }
.event-ok { color: var(--teal); font-weight: 500; }

.hash-block { background: var(--gray-50); border-radius: 4px; padding: 10px 12px; font-family: 'Courier New', monospace; font-size: 10px; color: var(--gray-600); word-break: break-all; margin-top: 1rem; }
.doc-footer { display: flex; align-items: center; justify-content: space-between; font-size: 10px; color: var(--gray-400); padding-top: 1rem; margin-top: 1rem; border-top: 0.5px solid var(--gray-100); }

/* ---- UTILITY ---- */
.hidden { display: none !important; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.text-muted { color: var(--gray-400); font-size: 12px; }

/* ---- PRINT ---- */
@media print {
  .doc-toolbar, .navbar { display: none !important; }
  body { background: white; }
  .doc-paper { border: none; border-radius: 0; max-width: 100%; }
  .doc-page { padding: 2rem; page-break-after: always; }
  .doc-page:last-child { page-break-after: auto; }
  .page-break-label { display: none; }
}

@media (max-width: 640px) {
  .metrics { grid-template-columns: 1fr 1fr; }
  .two-col  { grid-template-columns: 1fr; }
  .frow     { grid-template-columns: 1fr; }
  .frow-3   { grid-template-columns: 1fr 1fr; }
  .hero h1  { font-size: 26px; }
}
/* ---- FORM INPUTS (form builder + document upload) ---- */
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 5px;
}
.form-input {
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    padding: 9px 12px;
    border: 0.5px solid var(--gray-100);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--gray-900);
    outline: none;
    transition: border-color .15s;
    box-sizing: border-box;
}
.form-input:focus {
    border-color: var(--purple-mid);
}
