form {
  position: relative;
  padding-bottom: $form-padding-bottom;
}

.form {
  &__error-message {
    display: none;
    color: $color-red-orange;
    float: right;
  }

  &__error {
    .form-error-message {
      display: block;
    }
  }

  &__input-wrap {
    margin-bottom: 16px;
  }

  &__mandatory-text {
    color: color("grey");
    position: absolute;
    right: 15px;
    bottom: $form-padding-bottom;
    padding: $button-vertical-padding 0;
  }
}
