// RAMEN FORM ERROR COMPONENT
//
//
// Required Global Variables:
//
// N/A
//
//
// Required Component Variables:
//
// $form-error-background-color: Sets the background colour of form error
// $form-error-color: Sets the text colour of form error
// $form-error-margin-top: Spacing between the error and the form field
//
//

@mixin form-error {
  background-color: $form-error-background-color;
  color: $form-error-color;
  display: block;
  margin: $form-error-margin-top 0 0;
  text-align: left;
}

.c-form-error {
  @include form-error;
}
