.flex {
  display: flex;
}

.soft-launch {
  background: #97ffa0;
  padding: 10px;
  border-radius: 15px;
  p {
    font-size: 16px;
    margin: 0px;
    text-align: center;
  }
}

.important-text {
  h3 {
    text-align: center;
    font-weight: bold;
    padding: 30px 0;
    span {
      color: red;
    }
  }
}
.form-section {
  align-items: center;
  justify-content: space-around;
  background: #ffffe4;
  padding: 20px;

  .form-left-title h1 {
    font-size: 60px;
    font-weight: bold;
    color: purple;
    font-family: "Caveat", sans-serif !important;
    text-align: center;
  }

  .form-left-title h3 {
    text-align: center;
    padding-bottom: 20px;
  }
  .form-title h3 {
    font-size: 18px;
    font-weight: bold;
  }
  .form-left-title p {
    font-size: 16px;
    text-align: center;
  }
  .form-right {
    flex-wrap: nowrap;
    width: 500px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 20px;
    border-radius: 15px;
    background: #fff;
  }

  select#PhonCr {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
  }

  .gs-form {
    flex-wrap: wrap;
  }

  .gs-form label {
    color: purple; text-align:left;
  }

  .gs-form p {
    margin: 0px;
  }

  .form-cta {
    background: #efa924;
    text-decoration: none;
    max-width: 100%;
    color: purple;
    padding: 20px;
    border-radius: 15px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 600;
    border: none;
  }

  .form-cta:hover {
    background: #fff;
    border: solid 1px purple;
  }
}

@media only screen and (max-width: 450px) {
  .form-section {
    flex-wrap: wrap;
  }
}

.free-title h3 {
  font-size: 31px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: purple;
}

.free-title h4 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.free-membership {
  .at-a-glance {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
  }

  .left-image {
    width: 50%;
  }

  .items {
    text-align: center;
  }

  .right-content p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 450px) {
  .form-section {
    padding: 0px;
  }
  .gs-form {
    flex-direction: column !important;
  }
  .free-membership {
    flex-wrap: wrap;
    justify-content: center;
  }

  .at-a-glance {
    justify-content: center;
  }

  .right-content p {
    padding-top: 20px;
  }
  .form-right {
    width: 100%;
  }
}
