.section-form {
  position: relative;
  margin: 7rem 0;
}
.section-form .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 900px;
}
.section-form .container .content {
  width: 100%;
  text-align: center;
}
.section-form .container .content h2 {
  margin: 10px 0 40px;
}
.section-form .container .content .text {
  margin: 10px 0 40px;
}
.section-form .container .form {
  width: 100%;
  position: relative;
}
.section-form .container .form h3 {
  font-size: 1.4em;
  margin-top: 0;
  font-weight: 600;
  line-height: 1.2em;
  text-align: center;
}

/*

If first child

*/
.section-form:first-child {
  padding-top: 5rem;
}

/*

Options > Side by side

*/
.section-form[options~=side-by-side] .container {
  background-color: var(--gray);
  border-radius: 20px;
  padding: 50px;
  max-width: 1100px;
}
.section-form[options~=side-by-side] .container .content {
  width: 50%;
  padding-right: 50px;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  text-align: left;
}
.section-form[options~=side-by-side] .container .form {
  width: 50%;
  padding-left: 50px;
}
.section-form[options~=side-by-side] .container .form h3 {
  text-align: left;
}
.section-form[options~=side-by-side] .container .form input, .section-form[options~=side-by-side] .container .form textarea, .section-form[options~=side-by-side] .container .form select {
  background-color: var(--white);
}

@media (max-width: 1000px) {
  .section-form[options~=side-by-side] .container .content :is(h1, h2) {
    font-size: 2.75em;
  }
}
@media (max-width: 800px) {
  .section-form[options~=side-by-side] .container .content {
    width: 100%;
    border-right: 0;
    padding-right: unset;
  }
  .section-form[options~=side-by-side] .container .form {
    width: 100%;
    padding-left: unset;
  }
}