.flex-between {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* justify-content: center; */
  justify-content: flex-start;
}

.sent {
  padding: 48px 24px;
  text-align: center;
  color: #fff;
  background: var(--purple);
}

.sent__message {
  line-height: 24px;
}

.form {
  padding: 40px;
  margin-bottom: 40px;
}

.form__title {
  margin: 0 0 24px 0;
  font-size: 32px;
  text-align: center;
}

.form__subtitle {
  margin: 48px 0 24px 0;
}

.form__text {
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 16px;
}

.form__submit {
  /* margin: 40px 0; */
  text-align: center;
}

.form__button {
  /* position: absolute;
  bottom: 0;
  left: 0; */
  width: 100%;
  border-radius: 0;

  font-size: 16px;
  border: 0;
  outline: 0;

  height: 48px;
  line-height: 48px;
  vertical-align: middle;
  text-align: center;
  display: inline-block;
  color: #fff;
  background: var(--purple);
  padding: 0 24px;
  cursor: pointer;
  user-select: none;
  transition: all 0.14s;
}

.input {
  width: 100%;
  height: 40px;
  padding-left: 16px;
  margin-bottom: 16px;
  font-family: inherit;
  border: 0;
  background: #efefef;
  border-radius: 4px;
  font-size: 14px;
}

.input:hover {
  background: #eaeaea;
}

.input:focus {
  background: #fff;
  outline: 4px solid var(--pink);
}

.displayErrors .input:invalid {
  outline: 4px solid var(--yellow);
}

.checkbox {
  display: inline-block;
  min-height: 32px;
  text-align: center;
  vertical-align: middle;
  line-height: 32px;
  user-select: none;
  /* margin-bottom: 10px; */
  cursor: pointer;
  transition: all 0.05s;

  margin: 0 8px 16px 0;
}

.checkbox:active {
  transform: scale(0.98);
}

/* .checkbox:hover {
    background: #ddd;
} */

.checkbox__input {
  display: none;
}

.checkbox__label {
  padding: 4px 16px;
  font-size: 14px;
  border-radius: 9999px;
  background: #eee;
  cursor: pointer;
}

.checkbox__label:hover {
  background: #ddd;
}

.checkbox__input:checked + .checkbox__label {
  color: #fff;
  background: var(--purple);
}

.form-columns {
  display: flex;
  flex-wrap: wrap;

  margin-left: -10px;
  margin-right: -10px;
}

.col {
  flex-grow: 1;
  flex-basis: 0;
  padding: 0 10px;
}

@media (max-width: 900px) {
  .form {
    padding: 20px;
  }

  .form-columns {
    display: block;
  }

  .form__button {
    cursor: default;
  }

  .checkbox {
    cursor: default;
  }
}
