.form-container{
  background-color: #e4c585;
  max-width: 100%;
}
.form-container h2{
  color: black;
  font-weight: bold;
  margin: 1rem 0rem
}
.form{
  max-width: 1400px;
  margin: 0 auto;
}
.form .hs-form{
  display: flex;
  gap: 10px;
}
.form .form-columns-3{
  display: flex;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
}
.form .hs-error-msgs, .form .form-title{
  display: none;
}
.form .hs-form-field{
  display: flex;
}
.form .input{
  width: 80%;
}
.form input{
  width: 100%;
}
.form span{
  color: black;
  font-size: 24px;
}
.form .hs-button{
  border: none;
  background: black;
  color: #e4c585;
  font-size: 24px;
  cursor: pointer;
  padding: 1rem;
}
.form-subtext{
  color: black;
  display: flex;
  align-items: flex-end;
  margin-bottom: 20px;
  margin-top: -20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
}
.form-subtext p{
  margin: 0px 5px 0px 0px;
  line-height: 13px;
}
.form-subtext span{
  color: black;
  font-size: .75rem;
  height: 12px;
}
.form-subtext .divider{
  color: white;
}
@media(max-width: 900px){
  .form .hs-form{
    flex-direction: column;
    gap: 10px;
  }
  .form-subtext{
    display: none;
  }
  .form-container h2{
    display: none;
  }
  .form .hs-form-field {
    flex-direction: column;
    align-items: center;
}
  .form .hs-button{
    margin-bottom: -40px;
    border: 1px solid;
    margin-right: 1.5rem;
    width: 200px;
    float: right;
  }
  
/*@media(max-width: 640px){
  .form{
    padding: .5rem 1rem;
  }
  .form .hs-form{
    flex-direction: column;
    gap: 10px;
  }
  .form .form-columns-3{
    flex-direction: column
  }
  .form .hs-form-field{
    width:100% !important;
  }
  .form .input{
    width: 100%;
  }
  .form .hs-button{
    width: 200px;
  }
  .hs-name .input{
    margin-left: 5px;
  }
}*/