/*
 * 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: 12px;
  line-height: 26px;
  padding: 8px 16px;
  border: 1px solid var(--grey-color);
  border-radius: 2px;
  color: var(--text-color);
  margin: 0;
  background-color: var(--light-grey);
}

textarea::placeholder {
  color: var(--text-color);
  opacity: 0.5;
}

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

.dark-mode textarea {
  background-color: var(--dark-grey-bg);
  border-color: var(--grey-color-50);
}

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