body {
  background-color: inherit !important;
}

.aeva-form {
  width: 100%;
  height: auto;
  margin: auto;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  padding: 2%;
}
.aeva-form__input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.aeva-form__input-group.form-row {
  margin-left: 0;
  margin-right: 0;
}
.aeva-form__label {
  margin-bottom: 10px;
  font-weight: 500;
  text-align: start;
}
.aeva-form__input {
  padding: 10px 15px;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
}
.aeva-form__input:focus {
  outline: 0;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  box-shadow: 0 0 0 2px rgb(0, 0, 0, 0.1);
}


/* Preset Styles - Line */
.aeva-form__input.preset-line {
  border-style: solid;
  border-width: 0 0 1px 0;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 0px;
}

/* Preset Styles - Box */
.aeva-form__input.preset-box {
  border-bottom-width: 0px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0,0,0,0.1);
  border-radius: 10px;
}

.aeva-form__button {
  width: 100%;
  padding: 10px 15px;
  border: none;
  background-color: rgb(54, 201, 196);
  border-radius: 2px;
  margin-top: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
.aeva-form__button:hover {
  background-color: rgba(54, 201, 196, 0.9);
}
.aeva-form__button:active {
  background-color: rgba(54, 201, 196, 0.9);
  box-shadow: 0 0 0 2px rgb(54, 201, 54, 0.2);
}

.aeva-form__button.preset-box {
  border-radius: 10px;
}

.aeva-form__button.preset-line {
  border-radius: 0px;
}

.break-word {
  word-break: break-word;
}
.aeva-submit-thanks-message {
  width: 100%;
  max-width: 400px;
  height: auto;
  min-height: 400px;
  padding: 30px;
  border: 2px solid #edf2f9;
  border-radius: 3px;
  margin: auto;
  background-color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  display: none;
  line-height: 1.4;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* special class that hides honeypot fields in forms */
.aeva-input-form__green008001 {
  position: absolute; 
  left: -9999px;
  display: block;
}

.textarea-input:invalid + .invalid-feedback {
  display: block;
}

.aeva-form__input-group-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start !important;
  margin-bottom: 20px;
}

.aeva-form__label-flex {
  font-weight: 400;
  font-size: 14px;
}

.aeva-form__input-group-flex.form-group-flex {
  flex-direction: row;
  align-items: center;
}

.aeva-checkbox {
  margin-right: 10px;
  width: 16px !important;
}