/* ─────────────────────────────────────────────
   WEBCRAFT STUDIO — INTAKE FORM
   Dark, minimal, premium aesthetic
───────────────────────────────────────────── */

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ─── AMBIENT GLOW ORBS ─── */
.orb-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: orbDrift linear infinite;
}

.orb-1 {
  width: 55vw;
  height: 55vw;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.032) 0%, transparent 70%);
  top: -15%;
  left: -10%;
  animation-duration: 28s;
  animation-delay: 0s;
}

.orb-2 {
  width: 45vw;
  height: 45vw;
  background: radial-gradient(ellipse at center, rgba(200,200,230,0.026) 0%, transparent 70%);
  bottom: -10%;
  right: -8%;
  animation-duration: 34s;
  animation-delay: -12s;
}

.orb-3 {
  width: 38vw;
  height: 38vw;
  background: radial-gradient(ellipse at center, rgba(220,210,255,0.02) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation-duration: 22s;
  animation-delay: -7s;
}

@keyframes orbDrift {
  0%   { opacity: 0;    transform: translate(0px, 0px) scale(1); }
  10%  { opacity: 1; }
  50%  { transform: translate(40px, -30px) scale(1.08); }
  90%  { opacity: 1; }
  100% { opacity: 0;    transform: translate(0px, 0px) scale(1); }
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60vw 50vh at 15% 10%, rgba(255,255,255,0.028) 0%, transparent 70%),
    radial-gradient(ellipse 50vw 40vh at 85% 80%, rgba(200,200,220,0.022) 0%, transparent 70%);
}

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

:root {
  --bg:           #0e0e0e;
  --bg-texture:   #121212;
  --bg-card:      #181818;
  --bg-input:     #1c1c1c;
  --border:       #333333;
  --border-hover: #484848;
  --border-focus: #707070;
  --text-primary: #f5f5f5;
  --text-secondary: #a8a8a8;
  --text-muted:   #606060;
  --accent:       #ebebeb;
  --pill-active:  #ebebeb;
  --pill-active-text: #0e0e0e;
  --progress-line: #2e2e2e;
  --progress-fill: #ebebeb;
  --glow-line:    rgba(255,255,255,0.16);
  --glow-soft:    rgba(255,255,255,0.08);
  --radius-sm:    6px;
  --radius-md:    11px;
  --radius-lg:    16px;
  --radius-pill:  999px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', Arial, sans-serif;
  --transition:   0.22s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

/* ─── PROGRESS DOTS ─── */
.progress-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.progress-container.visible {
  opacity: 1;
  pointer-events: auto;
}

.step-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  flex-shrink: 0;
}

.step-dot span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.3);
  transition: color 0.35s ease;
  line-height: 1;
}

/* Completed step */
.step-dot.completed {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}

.step-dot.completed span {
  color: rgba(255,255,255,0.55);
}

/* Active step */
.step-dot.active {
  background: var(--progress-fill);
  border-color: var(--progress-fill);
  box-shadow: 0 0 0 3px rgba(235,235,235,0.15), 0 0 14px rgba(235,235,235,0.25);
  transform: scale(1.15);
}

.step-dot.active span {
  color: #0e0e0e;
  font-weight: 700;
}

/* ─── PAGE WRAPPER ─── */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 20px 60px;
  position: relative;
  z-index: 1;
}

/* ─── FORM SECTIONS ─── */
.form-section {
  display: none;
  width: 100%;
  max-width: 620px;
  animation: fadeSlideIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.form-section.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── LOGOMARK ─── */
.logomark {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 52px;
}

.logomark-icon {
  width: 34px;
  height: 34px;
  position: relative;
  flex-shrink: 0;
}

.logomark-icon svg {
  width: 100%;
  height: 100%;
}

.logomark-wordmark {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* ─── HEADER SECTION ─── */
.header-block {
  padding: 60px 0 72px;
  text-align: left;
}

.studio-label {
  display: none;
}

.header-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.header-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
}

.time-estimate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  border: 1px solid var(--border-focus);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
}

.time-estimate::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-secondary);
  opacity: 1;
}

/* ─── GLOW ACCENT DIVIDER ─── */
.glow-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 40px;
  position: relative;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.1) 20%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.1) 80%,
    transparent 100%
  );
  overflow: visible;
}

.glow-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 7px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.18) 0%, transparent 70%);
  filter: blur(3px);
}

/* ─── SECTION HEADER ─── */
.section-header {
  padding: 52px 0 32px;
}

.section-number {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 5vw, 3.1rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 8px;
}

.section-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.6;
}

/* ─── FIELDS ─── */
.fields {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 8px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-group label {
  font-size: 0.84rem;
  font-weight: 500;
  color: #c8c8c8;
  letter-spacing: 0.04em;
}

.optional {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.78rem;
}

/* ─── INPUTS & TEXTAREAS ─── */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid #3a3a3a;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  padding: 15px 20px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
textarea::placeholder {
  color: #585858;
  font-weight: 400;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus {
  border-color: #888888;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.07), 0 0 0 1px rgba(255,255,255,0.12);
  background: #222222;
}

textarea {
  min-height: 114px;
  line-height: 1.7;
}

/* ─── PILL SELECTIONS ─── */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-pill);
  border: 1px solid #3e3e3e;
  background: #1a1a1a;
  color: #b0b0b0;
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  letter-spacing: 0.03em;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
}

.pill:hover {
  border-color: #686868;
  color: #e8e8e8;
  background: #252525;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}

.pill:active {
  transform: translateY(0) scale(0.97);
  background: #202020;
}

.pill::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.28) 0%, transparent 70%);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.pill.pulse-glow::after {
  opacity: 1;
  transform: scale(1.6);
  transition: opacity 0s, transform 0s;
}

.pill.pulse-glow-fade::after {
  opacity: 0;
  transform: scale(2.2);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pill.selected {
  background: #f2f2f2;
  color: #0a0a0a;
  border-color: #f2f2f2;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(255,255,255,0.18), 0 1px 4px rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.pill.selected:hover {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 6px 24px rgba(255,255,255,0.22), 0 2px 8px rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

.pill.selected:active {
  transform: translateY(0) scale(0.97);
}

/* ─── RADIO GROUPS ─── */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 15px 20px;
  border-radius: var(--radius-md);
  border: 1px solid #333333;
  background: #181818;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  user-select: none;
  -webkit-user-select: none;
}

.radio-option:hover {
  border-color: #555555;
  background: #202020;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transform: translateX(2px);
}

.radio-option:active {
  transform: translateX(1px) scale(0.99);
}

.radio-option input[type="radio"] {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid #555555;
  background: var(--bg-input);
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #ffffff;
  transition: border-color 0.2s ease;
}

.radio-option span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #b0b0b0;
  transition: color 0.2s ease;
}

.radio-option:has(input:checked) {
  border-color: #888888;
  background: #232323;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 2px 16px rgba(0,0,0,0.3);
}

.radio-option:has(input:checked) span {
  color: #f0f0f0;
  font-weight: 500;
}

.radio-option:has(input:checked) input[type="radio"] {
  border-color: rgba(255,255,255,0.85);
}

/* ─── CHECKBOX GROUPS ─── */
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding-top: 4px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 14px 17px;
  border-radius: var(--radius-md);
  border: 1px solid #333333;
  background: #181818;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

.checkbox-option:hover {
  border-color: #555555;
  background: #202020;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transform: translateY(-1px);
}

.checkbox-option:active {
  transform: translateY(0) scale(0.98);
}

/* Hide native checkbox, replace with custom box */
.checkbox-option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 5px;
  border: 1.5px solid #4a4a4a;
  background: #1c1c1c;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  display: grid;
  place-items: center;
}

/* SVG checkmark via clip-path on a pseudo-element */
.checkbox-option input[type="checkbox"]::after {
  content: '';
  display: block;
  width: 11px;
  height: 7px;
  border-left: 2.5px solid #0d0d0d;
  border-bottom: 2.5px solid #0d0d0d;
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity 0.12s ease;
}

.checkbox-option input[type="checkbox"]:checked {
  background: #f2f2f2;
  border-color: #f2f2f2;
  box-shadow: 0 0 10px rgba(255,255,255,0.22);
}

.checkbox-option input[type="checkbox"]:checked::after {
  opacity: 1;
}

.checkbox-option span {
  font-size: 0.86rem;
  font-weight: 400;
  color: #b0b0b0;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.checkbox-option:has(input:checked) {
  border-color: #888888;
  background: #232323;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 2px 16px rgba(0,0,0,0.3);
}

.checkbox-option:has(input:checked) span {
  color: #f0f0f0;
  font-weight: 500;
}

/* ─── AGREEMENT CHECKS ─── */
.agreement-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agreement-check {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid #333333;
  background: #181818;
  align-items: flex-start !important;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.agreement-check:hover {
  border-color: #555555;
  background: #202020;
}

.agreement-check span {
  font-size: 0.88rem;
  font-weight: 400;
  color: #b0b0b0;
  line-height: 1.65;
  transition: color 0.2s ease;
}

.agreement-check:has(input:checked) {
  border-color: #888888;
  background: #232323;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 2px 16px rgba(0,0,0,0.3);
}

.agreement-check:has(input:checked) span {
  color: #f0f0f0;
  font-weight: 500;
}

/* ─── SECTION NAV ─── */
.section-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 44px 0 32px;
}

.section-nav--submit {
  justify-content: space-between;
}

/* ─── BUTTONS ─── */
.btn-next,
.btn-submit {
  position: relative;
  overflow: hidden;
  padding: 15px 42px;
  border-radius: var(--radius-pill);
  background: #f0f0f0;
  color: #080808;
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(255,255,255,0.1), 0 1px 4px rgba(255,255,255,0.06);
}

/* Shimmer sweep on hover */
.btn-next::before,
.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.btn-next:hover::before,
.btn-submit:hover::before {
  left: 160%;
}

.btn-next:hover,
.btn-submit:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,255,255,0.2), 0 3px 10px rgba(255,255,255,0.1);
}

.btn-next:active,
.btn-submit:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(255,255,255,0.08);
  background: #e2e2e2;
}

.btn-back {
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  background: transparent;
  color: #787878;
  border: 1px solid #3a3a3a;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-back:hover {
  border-color: #606060;
  color: #c0c0c0;
  background: rgba(255,255,255,0.05);
  transform: translateX(-2px);
}

.btn-back:active {
  transform: translateX(0) scale(0.97);
  color: #909090;
}

.btn-submit:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

/* ─── FORM ERROR ─── */
.form-error {
  padding: 13px 18px;
  border-radius: var(--radius-md);
  background: rgba(220, 80, 80, 0.1);
  border: 1px solid rgba(220, 80, 80, 0.28);
  color: #e88080;
  font-size: 0.86rem;
  font-weight: 400;
  margin-top: 8px;
}

/* ─── CONFIRMATION SCREEN ─── */
.confirmation-screen {
  display: none;
  width: 100%;
  max-width: 620px;
  min-height: 70vh;
  align-items: center;
  justify-content: center;
  animation: fadeSlideIn 0.5s ease forwards;
}

.confirmation-screen.visible {
  display: flex;
}

.confirmation-inner {
  text-align: left;
  padding: 60px 0;
}

.confirm-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #c8c8c8;
  margin-bottom: 32px;
}

.confirm-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.confirm-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 24px;
}

.confirm-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ─── FOOTER ─── */
.site-footer {
  width: 100%;
  max-width: 620px;
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  text-align: left;
}

.site-footer p {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
  .page-wrapper {
    padding: 70px 18px 50px;
  }

  .header-block {
    padding: 40px 0 56px;
  }

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .pill-group {
    gap: 7px;
  }

  .pill {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .section-nav {
    padding: 36px 0 28px;
    flex-wrap: wrap;
  }

  .btn-next,
  .btn-submit {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 16px 24px;
  }

  .btn-back {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .section-nav--submit {
    flex-direction: column-reverse;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .step-dot {
    width: 22px;
    height: 22px;
  }
  .step-dot span {
    font-size: 0.55rem;
  }
  .step-dots {
    gap: 4px;
  }

  .section-header {
    padding: 36px 0 28px;
  }

  .fields {
    gap: 22px;
  }
}
