.mainform{
    background: #fff;
    margin: 0 auto;
    padding: 30px 30px;
    max-width: 720px;
    border-radius: 30px;
    box-shadow: 0px 1px 5px #00000033;
  }
  .mainform h2 {
      font-size: 34px;
      line-height: 40px;
      font-weight: 800;
      text-align: center;
  }
  .mainform p{
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #516B7B;
    margin-top: 18px;
  }
  .formmain {
    margin-top: 30px;
  }
  .formmain  .input-group {
      margin-bottom: 20px;
      flex-direction: column;
  }
  
  .input-group label {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #324652;
    margin-bottom: 10px;
    display: block;
  }
  .input-group label .required {
    color: #FF0101;
    margin-left: 3px;
  }
  .input-group input:not([type=submit]) {
    border: 1px solid rgba(50, 70, 82, 0.2196078431);
    border-radius: 35px !important;
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #324652;
    padding: 19px 22px;
  }
  .input-group select {
    border: 1px solid rgba(50, 70, 82, 0.2196078431);
    border-radius: 35px !important;
    font-size: 14px;
    line-height: 18px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: #324652;
    padding: 19px 22px;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(./arrow_down.png) no-repeat calc(100% - 20px) 24px;
    background-size: 13px;
    cursor: pointer;
	height: auto !important;
  }
  .inputs_groups {
    display: flex;
    justify-content: space-between;
  }
  .inputs_groups .input-group {
    width: calc(50% - 7.5px);
  }
  .btn-submit {
    box-shadow: none;
    padding: 17px 22px;
    border: 1px solid;
    font-size: 16px;
    font-weight: 500;
    line-height: 17px;
    border-radius: 75px;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    background-color: #4876EF;
    color: #fff;
    border-color: #4876EF;
    font-weight: 700;
    letter-spacing: 1.5px;
    width: 250px;
    display: block;
    margin: 34px auto 0px;
}
  @media screen and (max-width: 768px) {
    .formmain {
      margin-top: 20px;
    }
    .input-group input:not([type=submit]) {
      padding: 14px 16px;
    }
    .inputs_groups {
      flex-direction: column;
    }
    .inputs_groups .input-group {
      width: 100%;
    }
    .mainform {
      max-width: 620px;
      width: 90%;
      padding: 30px 20px;
    }
    .mainform h2 {
      font-size: 32px;
      line-height: 36px;
    }
    .mainform p {
      font-size: 16px;
      line-height: 20px;
      margin-top: 10px;
    }
  }