.orbiter {
  --core-radius: 10vw;
  --orbiter-radius: calc( var(--core-radius) * 8);
  width: var(--orbiter-radius);
  height: var(--orbiter-radius);
}
.orbiter circle {
  cx: calc(var(--orbiter-radius) / 2);
  cy: calc(var(--orbiter-radius) / 2);
}
.orbiter .core {
  fill: rgba(255, 255, 255, 0.0666666667);
  r: calc(var(--core-radius));
}
.orbiter .orbit {
  --orbit-radius: 15vw;
  fill: transparent;
  r: var(--orbit-radius);
}
.orbiter .orbit.dashed {
  stroke-width: 2px;
  stroke: rgba(255, 255, 255, 0.0666666667);
  stroke-dasharray: 32;
}
.orbiter .satellite {
  --leap-duration: 10s;
  --satellite-core-distance: 100px;
  --satellite-radius: 2vw;
  --start-rotation: 0deg;
  fill: rgba(255, 255, 255, 0.0666666667);
  r: calc(var(--satellite-radius));
  cx: calc(var(--orbiter-radius) / 2 + var(--satellite-core-distance));
  animation: orbitCircle var(--leap-duration) linear infinite forwards;
  transform-origin: 50% 50%;
  transition: 0.15s;
}
.orbiter .satellite.border {
  stroke-width: 2px;
  stroke: rgba(255, 255, 255, 0.0666666667);
  fill: transparent;
}

@keyframes orbitCircle {
  from {
    transform: rotate(var(--start-rotation));
  }
  to {
    transform: rotate(calc(var(--start-rotation) + 360deg));
  }
}
.fx {
  --fx-asset-x: 0%;
  --fx-asset-y: 0%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  overflow: hidden;
  z-index: -1;
}
.fx > :first-child {
  transform: translate(var(--fx-asset-x), var(--fx-asset-y));
}

.fx.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  --fx-asset-x: 0%;
  --fx-asset-y: 0%;
}

#form-section {
  --min-width-width-padding: calc( 340px + var(--side-padding) * 2 );
  width: min(var(--min-width-width-padding), 100%);
  padding-bottom: 10vh;
}
@media screen and (max-width: 768px) {
  #form-section {
    width: 100%;
  }
}
#form-section .wrapped-field {
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1333333333);
  font-weight: 400;
  --text-200: #fff6;
  --text-400: #fff8;
  --text-600: #fff9;
  --text-700: #fffa;
  --text-900: #fff;
  background: rgba(255, 255, 255, 0.0666666667);
  border-radius: 0;
  box-shadow: none;
  position: relative;
}
#form-section .wrapped-field::-moz-placeholder {
  font-weight: 400;
}
#form-section .wrapped-field::placeholder {
  font-weight: 400;
}
#form-section .wrapped-field:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  background-image: var(--fade);
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0% 0%;
  transition: 0.25s;
}
#form-section .wrapped-field:hover, #form-section .wrapped-field:focus-within {
  background-color: rgba(var(--secondary-rgb), 0.1);
  border-bottom-color: var(--secondary);
}
#form-section .wrapped-field:focus-within:after {
  transform: scaleX(1);
}/*# sourceMappingURL=styles.css.map */