.form__submit {
  display: inline-block;
  background: #055881;
  padding: 5px 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  text-decoration: none;
  outline: none;
  border: none;
  cursor: pointer;
  justify-self: end;
}
.form__submit:disabled {
  background: #878787;
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}
.form__secondary {
  display: inline-block;
  background: #055881;
  padding: 5px 20px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  text-decoration: none;
  outline: none;
  border: none;
  cursor: pointer;
}
.form__secondary:disabled {
  background: #878787;
  opacity: 0.6;
  cursor: default;
  pointer-events: none;
}
.form__required {
  font-size: 14px;
}
.form__group {
  margin-bottom: 25px;
}
.form__input {
  width: 100%;
  border-radius: 0;
  font-size: 14px;
  padding: 0 10px;
  height: 40px;
  color: #878787;
  font-family: "Open sans", sans-serif;
  border: none;
  transition: all 0.3s ease;
}
.form__input:focus {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  outline: none;
}
.form__input::placeholder {
  opacity: 0.5;
}
.form__input--checkbox {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  cursor: pointer;
}
.form__input--checkbox + .form__label {
  height: 20px;
  line-height: 20px;
  font-size: 14px;
  vertical-align: top;
  cursor: pointer;
}
.form__input--checkbox + .form__label a {
  text-decoration: none;
}
.form__input--textarea {
  padding-top: 10px;
  height: auto;
  min-height: 175px;
}
.form__action {
  display: flex;
  justify-content: space-between;
}