:root {
  color-scheme: light;
}

/* .nunito-sans-<uniquifier> {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
} */

body {
  background: radial-gradient(circle at 0% 0%, rgba(169, 182, 145, 0.12), transparent 55%),
              radial-gradient(circle at 100% 20%, rgba(201, 139, 104, 0.12), transparent 50%),
              #f9f3ec;
  min-height: 100vh;
  font-family: "Nunito Sans", sans-serif;
}

.hero-surface {
  position: relative;
  isolation: isolate;
}

.hero-surface::before {
  content: "";
  position: absolute;
  inset: 10% 5% 0;
  z-index: -1;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(60px);
}

.hero-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg, rgba(201, 139, 104, 0.12), rgba(164, 182, 145, 0.08));
}

.form-wrapper {
  display: flex;
  justify-content: center;
}

.hs-form-frame {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);  
  border: none;
  border-radius: 32px; 
  overflow: hidden;
}

