/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */
/**
 * @file
 * Textarea.
 */
textarea {
  width: 100%;
  min-height: unset;
  font-family: var(--font-regular);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  padding: 12px 16px;
  border: 1px solid var(--grey-color);
  color: var(--text-color);
  margin: 0;
  background-color: #fff;
}

textarea::placeholder {
  color: var(--grey-color);
}

textarea:focus {
  border: 1px solid var(--grey-color) !important;
  outline: none !important;
  box-shadow: unset;
}

/*# sourceMappingURL=form-textarea.css.map*/