.sharpspring_form form {
  padding: 0;
}
.sharpspring_form form .form-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.sharpspring_form form .form_fields {
  width: 90%;
}
.sharpspring_form form .form_fields li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.sharpspring_form form .form_fields li .field_value {
  width: 100%;
}
.sharpspring_form form label {
  opacity: 0;
  height: 0;
  font-size: 0;
  position: absolute;
}
.sharpspring_form form input {
  border-top-left-radius: 110px;
  border-bottom-left-radius: 110px;
  border: none;
  width: 100%;
  font-size: 28px;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  line-height: 100%;
  color: #333;
  padding: 10px 15px;
  height: 60px;
  margin: 0;
  box-shadow: none;
}
.sharpspring_form form input::placeholder {
  color: #999;
  font-size: 28px;
  opacity: 0.8;
}
.sharpspring_form form #submit_button {
  position: absolute;
  font-family: 'Raleway', sans-serif;
  top: 0;
  right: 0;
  border-top-right-radius: 110px;
  border-bottom-right-radius: 110px;
  padding: 12px 30px;
  font-size: 17px;
  font-weight: 900;
  display: inline-block;
  transition: all 175ms cubic-bezier(0.645, 0.045, 0.355, 1);
  white-space: nowrap;
  color: #0031A7;
  background-color: #FFD500;
  background-image: none;
  height: 60px;
  border: none;
  box-shadow: none;
  text-shadow: none;
}
.sharpspring_form form #submit_button:hover {
  background-color: #243BFF;
  color: #fcd405;
}
.sharpspring_form form .ss-recaptcha {
  flex: 100%;
  display: none;
}
@media (max-width: 1100px) {
  .sharpspring_form form input {
    font-size: 22px;
  }
  .sharpspring_form form input::placeholder {
    font-size: 22px;
  }
}
@media (max-width: 400px) {
  .sharpspring_form form input {
    font-size: 18px;
  }
  .sharpspring_form form input::placeholder {
    font-size: 18px;
  }
}
