:root {
      --td-green: #12b76a;
      --td-green-dark: #087443;
      --td-green-soft: #dff8ec;
      --td-green-glow: rgba(18, 183, 106, 0.18);
      --ink: #10231c;
      --muted: #667085;
      --line: rgba(16, 35, 28, 0.1);
      --card: rgba(255, 255, 255, 0.82);
      --card-solid: #ffffff;
      --bg: #f5faf7;
      --warning: #f59e0b;
      --danger: #ef4444;
      --blue: #2f80ed;
      --shadow: 0 24px 70px rgba(16, 35, 28, 0.12);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
    }

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

    body {
      min-height: 100vh;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(18, 183, 106, 0.22), transparent 28%),
        radial-gradient(circle at 78% 8%, rgba(47, 128, 237, 0.12), transparent 24%),
        linear-gradient(135deg, #f7fcf9 0%, #eef9f2 48%, #f8fbff 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(16, 35, 28, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 35, 28, 0.035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 70%);
    }

    .app-shell {
      display: grid;
      grid-template-columns: 290px 1fr;
      gap: 24px;
      min-height: 100vh;
      padding: 22px;
    }

    .sidebar {
      position: sticky;
      top: 22px;
      height: calc(100vh - 44px);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
      backdrop-filter: blur(24px);
      box-shadow: var(--shadow);
      padding: 22px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 26px;
    }

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: white;
      background:
        linear-gradient(135deg, var(--td-green), var(--td-green-dark));
      box-shadow: 0 14px 30px var(--td-green-glow);
      font-family: "Space Grotesk", sans-serif;
      font-weight: 700;
      letter-spacing: -0.04em;
    }

    .brand-title {
      font-family: "Space Grotesk", sans-serif;
      font-size: 22px;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .brand-subtitle {
      color: var(--muted);
      font-size: 12px;
      margin-top: 4px;
    }

    .workspace-card {
      border-radius: 22px;
      background: linear-gradient(145deg, rgba(18, 183, 106, 0.12), rgba(255, 255, 255, 0.8));
      border: 1px solid rgba(18, 183, 106, 0.22);
      padding: 16px;
      margin-bottom: 22px;
    }

    .workspace-label {
      color: var(--td-green-dark);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .workspace-name {
      font-family: "Space Grotesk", sans-serif;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -0.03em;
    }

    .workspace-meta {
      color: var(--muted);
      font-size: 13px;
      margin-top: 6px;
    }

    .nav {
      display: grid;
      gap: 7px;
    }

    .nav-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 13px;
      border-radius: 16px;
      color: #344054;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: 0.2s ease;
    }

    .nav-item span:first-child {
      width: 28px;
      height: 28px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: rgba(16, 35, 28, 0.055);
    }

    .nav-item.active,
    .nav-item:hover {
      background: #10231c;
      color: white;
      transform: translateX(3px);
    }

    .nav-item.active span:first-child,
    .nav-item:hover span:first-child {
      background: rgba(255, 255, 255, 0.15);
    }

    .user-box {
      margin-top: 22px;
      padding: 14px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid var(--line);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #10231c, #1d6f48);
      color: white;
      font-weight: 800;
      font-size: 14px;
    }

    .user-name {
      font-weight: 800;
      font-size: 14px;
    }

    .user-role {
      color: var(--muted);
      font-size: 12px;
      margin-top: 2px;
    }

    main {
      min-width: 0;
    }

    .topbar {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      margin-bottom: 22px;
    }

    .eyebrow {
      color: var(--td-green-dark);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 8px;
    }

    h1 {
      font-family: "Space Grotesk", sans-serif;
      font-size: clamp(32px, 4vw, 54px);
      line-height: 0.96;
      letter-spacing: -0.065em;
      max-width: 770px;
    }

    .top-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .btn {
      border: 0;
      padding: 12px 16px;
      border-radius: 15px;
      font-family: inherit;
      font-weight: 850;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--td-green), var(--td-green-dark));
      box-shadow: 0 15px 32px var(--td-green-glow);
    }

    .btn-secondary {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(16, 35, 28, 0.12);
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .grid {
      display: grid;
      gap: 18px;
    }

    .grid-kpis {
      grid-template-columns: 1.45fr 1fr 1fr 1fr;
    }

    .grid-main {
      grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
      align-items: start;
      margin-top: 18px;
    }

    .grid-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card {
      position: relative;
      border-radius: var(--radius-xl);
      background: var(--card);
      backdrop-filter: blur(22px);
      border: 1px solid rgba(255, 255, 255, 0.74);
      box-shadow: 0 18px 50px rgba(16, 35, 28, 0.09);
      padding: 20px;
      overflow: hidden;
    }

    .card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent 38%);
    }

    .card > * {
      position: relative;
      z-index: 1;
    }

    .kpi-main {
      background:
        linear-gradient(135deg, rgba(16, 35, 28, 0.96), rgba(8, 116, 67, 0.9)),
        radial-gradient(circle at right top, rgba(18, 183, 106, 0.4), transparent 35%);
      color: white;
      min-height: 180px;
    }

    .kpi-main .muted,
    .kpi-main .kpi-caption {
      color: rgba(255, 255, 255, 0.74);
    }

    .kpi-title {
      color: var(--muted);
      font-size: 13px;
      font-weight: 850;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 14px;
    }

    .kpi-value {
      font-family: "Space Grotesk", sans-serif;
      font-size: 32px;
      font-weight: 700;
      letter-spacing: -0.055em;
      margin-bottom: 8px;
    }

    .kpi-main .kpi-value {
      font-size: 48px;
    }

    .kpi-caption {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 8px 11px;
      font-size: 12px;
      font-weight: 850;
      background: rgba(255, 255, 255, 0.16);
      color: rgba(255, 255, 255, 0.86);
      border: 1px solid rgba(255, 255, 255, 0.16);
    }

    .pill-light {
      color: var(--td-green-dark);
      background: var(--td-green-soft);
      border-color: rgba(18, 183, 106, 0.18);
    }

    .pill-warning {
      color: #92400e;
      background: #fff4dd;
      border-color: rgba(245, 158, 11, 0.24);
    }

    .pill-danger {
      color: #991b1b;
      background: #ffe8e8;
      border-color: rgba(239, 68, 68, 0.22);
    }

    .section-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }

    .section-title h2 {
      font-family: "Space Grotesk", sans-serif;
      font-size: 22px;
      letter-spacing: -0.045em;
    }

    .section-title p {
      color: var(--muted);
      font-size: 13px;
      margin-top: 4px;
    }

    .mini-link {
      color: var(--td-green-dark);
      font-weight: 900;
      font-size: 13px;
      text-decoration: none;
    }

    .payment-list {
      display: grid;
      gap: 12px;
    }

    .payment-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 13px;
      align-items: center;
      padding: 14px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(16, 35, 28, 0.08);
    }

    .icon-box {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      font-size: 18px;
      background: rgba(18, 183, 106, 0.12);
    }

    .payment-name {
      font-weight: 900;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .payment-meta {
      color: var(--muted);
      font-size: 13px;
    }

    .payment-amount {
      text-align: right;
      font-weight: 900;
      font-family: "Space Grotesk", sans-serif;
      font-size: 18px;
      letter-spacing: -0.04em;
    }

    .payment-status {
      margin-top: 4px;
      font-size: 11px;
      color: var(--muted);
      font-weight: 800;
    }

    .upload-zone {
      border: 1.5px dashed rgba(18, 183, 106, 0.45);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(18, 183, 106, 0.08), rgba(255, 255, 255, 0.72));
      padding: 18px;
      display: grid;
      gap: 14px;
    }

    .upload-head {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .upload-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background: #10231c;
      color: white;
      font-size: 23px;
      box-shadow: 0 16px 35px rgba(16, 35, 28, 0.2);
    }

    .upload-title {
      font-weight: 900;
      font-size: 16px;
    }

    .upload-copy {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
      margin-top: 3px;
    }

    .detected-box {
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(16, 35, 28, 0.08);
      border-radius: 22px;
      padding: 14px;
    }

    .detected-row {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 10px 0;
      border-bottom: 1px solid rgba(16, 35, 28, 0.07);
      font-size: 13px;
    }

    .detected-row:last-child {
      border-bottom: 0;
    }

    .detected-row span:first-child {
      color: var(--muted);
      font-weight: 700;
    }

    .detected-row span:last-child {
      font-weight: 900;
      text-align: right;
    }

    .flow-chart {
      display: grid;
      gap: 13px;
    }

    .bar-item {
      display: grid;
      gap: 8px;
    }

    .bar-label {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .bar {
      height: 11px;
      border-radius: 99px;
      background: rgba(16, 35, 28, 0.08);
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--td-green), var(--td-green-dark));
    }

    .bar-fill.warning {
      background: linear-gradient(90deg, #fbbf24, #f59e0b);
    }

    .bar-fill.danger {
      background: linear-gradient(90deg, #f87171, #ef4444);
    }

    .members {
      display: grid;
      gap: 12px;
    }

    .member-item {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 13px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(16, 35, 28, 0.08);
    }

    .member-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .member-avatar {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: white;
      background: linear-gradient(135deg, var(--td-green-dark), var(--td-green));
      font-size: 13px;
      font-weight: 900;
    }

    .member-name {
      font-weight: 900;
      font-size: 14px;
    }

    .member-role {
      color: var(--muted);
      font-size: 12px;
      margin-top: 2px;
    }

    .status-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--td-green);
      box-shadow: 0 0 0 5px rgba(18, 183, 106, 0.14);
    }

    .calendar {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 8px;
    }

    .day {
      min-height: 78px;
      border-radius: 17px;
      padding: 9px;
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(16, 35, 28, 0.07);
      font-size: 12px;
      color: var(--muted);
    }

    .day strong {
      display: block;
      color: var(--ink);
      margin-bottom: 7px;
      font-size: 13px;
    }

    .tag {
      display: inline-block;
      max-width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      border-radius: 99px;
      padding: 4px 7px;
      font-size: 10px;
      font-weight: 900;
      background: var(--td-green-soft);
      color: var(--td-green-dark);
    }

    .tag.warn {
      background: #fff4dd;
      color: #92400e;
    }

    .tag.danger {
      background: #ffe8e8;
      color: #991b1b;
    }

    .mobile-tabbar {
      display: none;
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 20;
      padding: 10px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(16, 35, 28, 0.1);
      box-shadow: 0 20px 50px rgba(16, 35, 28, 0.16);
      grid-template-columns: repeat(5, 1fr);
      gap: 4px;
    }

    .tab {
      border-radius: 16px;
      padding: 10px 6px;
      text-align: center;
      font-size: 11px;
      color: var(--muted);
      font-weight: 800;
    }

    .tab.active {
      background: #10231c;
      color: white;
    }

    @media (max-width: 1180px) {
      .app-shell {
        grid-template-columns: 1fr;
      }

      .sidebar {
        display: none;
      }

      .grid-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .grid-main {
        grid-template-columns: 1fr;
      }

      .mobile-tabbar {
        display: grid;
      }

      main {
        padding-bottom: 92px;
      }
    }

    @media (max-width: 720px) {
      .app-shell {
        padding: 14px;
      }

      .topbar {
        align-items: flex-start;
        flex-direction: column;
      }

      .top-actions {
        width: 100%;
        justify-content: stretch;
      }

      .top-actions .btn {
        flex: 1;
        justify-content: center;
      }

      .grid-kpis,
      .grid-2 {
        grid-template-columns: 1fr;
      }

      .card {
        padding: 17px;
        border-radius: 24px;
      }

      .kpi-main .kpi-value {
        font-size: 40px;
      }

      .calendar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .payment-item {
        grid-template-columns: auto 1fr;
      }

      .payment-amount {
        grid-column: 1 / -1;
        text-align: left;
        padding-left: 55px;
      }
    }

/* Family Flow Auth + DB edition */
.hidden {
  display: none !important;
}

.auth-view,
.pending-view {
  min-height: 100vh;
  padding: 26px;
  display: grid;
  place-items: center;
}

.auth-shell {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1.1fr 460px;
  gap: 24px;
  align-items: stretch;
}

.auth-brand-panel {
  border-radius: 34px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(16, 35, 28, 0.94), rgba(8, 116, 67, 0.86)),
    radial-gradient(circle at top right, rgba(18, 183, 106, 0.48), transparent 38%);
  color: white;
  box-shadow: var(--shadow);
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.auth-brand-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
}

.auth-brand-panel > * {
  position: relative;
  z-index: 1;
}

.auth-brand-panel .brand-subtitle,
.auth-brand-panel .auth-lead {
  color: rgba(255, 255, 255, 0.76);
}

.auth-brand-panel h1 {
  max-width: 680px;
  font-size: clamp(40px, 5vw, 70px);
  margin-top: auto;
  margin-bottom: 20px;
}

.auth-lead {
  font-size: 16px;
  line-height: 1.65;
  max-width: 560px;
}

.auth-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.auth-feature-card {
  border-radius: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.auth-feature-card span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 14px;
  font-weight: 900;
  font-size: 12px;
}

.auth-feature-card strong {
  display: block;
  margin-bottom: 7px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

.auth-feature-card small {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.45;
}

.auth-card {
  padding: 24px;
  align-self: center;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  border-radius: 18px;
  background: rgba(16, 35, 28, 0.06);
  margin-bottom: 22px;
}

.auth-tab {
  border: 0;
  border-radius: 14px;
  background: transparent;
  padding: 12px;
  font-family: inherit;
  font-weight: 900;
  color: var(--muted);
  cursor: pointer;
}

.auth-tab.active {
  background: #10231c;
  color: white;
  box-shadow: 0 12px 26px rgba(16, 35, 28, 0.16);
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form h2,
.pending-card h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.auth-form p,
.pending-card p {
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

.auth-form label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 13px;
  font-weight: 900;
}

.auth-form input {
  width: 100%;
  border: 1px solid rgba(16, 35, 28, 0.12);
  border-radius: 16px;
  padding: 14px 15px;
  font-family: inherit;
  font-size: 15px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  outline: none;
}

.auth-form input:focus {
  border-color: rgba(18, 183, 106, 0.58);
  box-shadow: 0 0 0 5px rgba(18, 183, 106, 0.1);
}

.auth-form small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.full-width {
  width: 100%;
  justify-content: center;
}

.message-box {
  margin-top: 16px;
  border-radius: 16px;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
  background: var(--td-green-soft);
  color: var(--td-green-dark);
  border: 1px solid rgba(18, 183, 106, 0.22);
}

.message-box.error {
  background: #ffe8e8;
  color: #991b1b;
  border-color: rgba(239, 68, 68, 0.22);
}

.pending-card {
  width: min(560px, 100%);
  padding: 32px;
}

.pending-card .brand {
  margin-bottom: 28px;
}

.pending-card .btn {
  margin-top: 22px;
}

.workspace-code-box {
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 183, 106, 0.2);
}

.workspace-code-box span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.workspace-code-box strong {
  display: block;
  color: var(--td-green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
}

.empty-state {
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 35, 28, 0.08);
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.approve-btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--td-green-soft);
  color: var(--td-green-dark);
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    min-height: auto;
  }

  .auth-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .auth-view,
  .pending-view {
    padding: 14px;
  }

  .auth-brand-panel {
    padding: 24px;
    border-radius: 28px;
  }

  .auth-brand-panel h1 {
    font-size: 42px;
  }
}

.data-form {
  display: grid;
  gap: 14px;
}

.data-form label {
  display: grid;
  gap: 7px;
  color: #10231c;
  font-size: 13px;
  font-weight: 850;
}

.data-form input,
.data-form select,
.data-form textarea {
  width: 100%;
  border: 1px solid rgba(16, 35, 28, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  color: #10231c;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 650;
  outline: none;
  padding: 13px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: 0.2s ease;
}

.data-form textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.45;
}

.data-form input::placeholder,
.data-form textarea::placeholder {
  color: rgba(102, 112, 133, 0.78);
  font-weight: 500;
}

.data-form input:focus,
.data-form select:focus,
.data-form textarea:focus {
  border-color: rgba(18, 183, 106, 0.7);
  box-shadow:
    0 0 0 4px rgba(18, 183, 106, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  background: #ffffff;
}

.data-form .full-width {
  margin-top: 4px;
  justify-content: center;
}
