.reno-hero-form-container-bg {
  background-color: rgba(190, 185, 228, 0.25);
  overflow: hidden;
}

.reno-hero-form-container-has-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.reno-hero-form-container-inner {
  position: relative;
}

.reno-hero-form-container-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 1;
}

.reno-hero-form-container-inner.radial-gradient::before {
  content: "";
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--active-color, #c6ffd7),
    rgba(244, 242, 255, 0)
  );
  position: absolute;
  top: -35%;
  left: -28%;
  width: 520px;
  height: 520px;
  z-index: 0;
}

.reno-hero-form-container-inner.radial-gradient::after {
  content: "";
  background: radial-gradient(
    50% 50% at 50% 50%,
    var(--active-color, #c6ffd7),
    rgba(244, 242, 255, 0)
  );
  position: absolute;
  right: -18%;
  bottom: -40%;
  width: 420px;
  height: 420px;
  z-index: 0;
}

.reno-hero-form-container-panel {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 32px 24px;
  gap: 20px;
}

.reno-hero-form-container-form {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(24, 24, 27, 0.08);
  box-shadow: 0 14px 40px rgba(24, 24, 27, 0.08);
}

@media (min-width: 1024px) {
  .reno-hero-form-container-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 500px;
    align-items: start;
    padding: 56px 48px;
  }

  .reno-hero-form-container-form {
    padding: 32px;
  }
}
