@use '../../../../../styles' as *;

@mixin insertTextareaField() {
  .textareaField {
    width: 100%;
    height: fit-content;
    min-height: 68px;

    resize: none;
    border-radius: 8px;
    padding: 10px 12px;

    background-color: $white;
    box-shadow: 0 0 0 1px $gray-300, 0 1px 2px 0 #1018280D;

    @include fnt($size: 16, $line-height: 24, $weight: 400, $color: $gray-900);

    &::placeholder {
      @include fnt($size: 16, $line-height: 24, $weight: 400, $color: $gray-400);
    }

    &:focus {
      box-shadow: 0 0 0 4px #F2F4F7, 0 1px 2px 0 #1018280D;
    }

    &:disabled {
      @include fnt($size: 16, $line-height: 24, $weight: 400, $color: $gray-500);
      background-color: $gray-100;
    }

    &.isError {
      border: 1px solid $error-300;

      &:focus {
        box-shadow: 0 0 0 4px #FEE4E2, 0 1px 2px 0 #1018280D;
      }
    }

    @content;
  }
}