form *,
form label,
form input,
form select,
form p {
  font-size: 14px !important;
}

form input,
form select {
  padding: 5px 10px;
  margin-bottom: 10px;
}

form .field-error {
  display: none;
}

form .custom-invalid {
  border: 2px solid red;
}

form input[type='checkbox'].custom-invalid {
  box-shadow: 0px 0px 0px 2px #FF0000;
}

form .submit-error-msg {
  font-size: 14px !important;
  font-weight: 600;
  text-align: center;
  color: red;
  background-color: #ffa07a54;
  margin: 0;
  padding: 10px;
  border-radius: 5px;
  max-height: 49px;
}

form #submit-btn {
  background-color: #0065bd;
  padding: 15px 22px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  -webkit-transition: all 0.45s cubic-bezier(0.25,1,0.33,1);
  width: auto;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 16px !important;
  border-radius: 0;
}

form #submit-btn:hover {
  opacity: 0.85;
}

form .actions {
  display: flex;
  gap: 30px;
}

@media only screen and (max-width: 600px) {
  form .actions {
    flex-direction: column;
  }

  form .submit-error-msg {
    max-height: inherit;
  }
}