@layer starter, reset, base, state, application;
@layer reset {
  ._textarea_1p24a_2 {
    all: unset;
    font-family: var(--font-family-base, "Nunito Sans", sans-serif);
    font-size: 100%;
    color: var(--foreground-color, #141414);
    margin: 0;
    padding: 0;
    border-style: none;
    border-width: 0;
    border-color: transparent;
    box-sizing: border-box;
    display: flex;
  }
}
@layer base {
  ._textarea_1p24a_2 {
    flex-direction: column;
    font-size: 1rem;
    gap: 0.5rem;
  }
  ._textarea_1p24a_2._has-cols_1p24a_22 textarea {
    align-self: flex-start;
    min-width: unset;
    width: unset;
  }
  ._textarea_1p24a_2 textarea {
    font-family: var(--font-family-base, "Nunito Sans", sans-serif);
    font-size: 100%;
    color: var(--foreground-color, #141414);
    background-color: var(--background-color, #ffffff);
    border: 0.0625rem solid var(--border-color, #949596);
    border-radius: 0.375rem;
    box-sizing: border-box;
    display: block;
    padding-block: 0.5rem;
    padding-inline: 0.75rem;
    min-height: 2.5rem;
    min-width: 10rem;
    width: 100%;
    outline-color: transparent;
    transition: background-color 200ms cubic-bezier(0, 0, 0.4, 1), outline-color 200ms cubic-bezier(0, 0, 0.4, 1);
  }
  ._textarea_1p24a_2 textarea::-moz-placeholder {
    color: var(--foreground-color-subdued, #737475);
  }
  ._textarea_1p24a_2 textarea::placeholder {
    color: var(--foreground-color-subdued, #737475);
  }
  ._textarea_1p24a_2 ._counter_1p24a_47 {
    color: var(--foreground-color-subdued, #737475);
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: end;
  }
}
@layer state {
  ._textarea_1p24a_2 textarea:focus-visible {
    outline: 0.125rem solid var(--focus-ring-color, #0265DC);
    outline-offset: 0.125rem;
  }
  ._textarea_1p24a_2._error_1p24a_59 textarea {
    border-color: var(--border-color-danger, #e13212);
  }
  ._textarea_1p24a_2._error_1p24a_59 textarea:focus-visible {
    outline: 0.125rem solid var(--focus-ring-color-danger, #e13212);
    outline-offset: 0.125rem;
  }
  ._textarea_1p24a_2._disabled_1p24a_66 textarea {
    background-color: var(--background-color-strong, #f7f7f7);
    opacity: 0.6;
  }
  ._textarea_1p24a_2._disabled_1p24a_66 textarea:hover {
    cursor: not-allowed;
  }
  ._textarea_1p24a_2._disable-resize_1p24a_73 textarea {
    resize: none;
  }
  ._textarea_1p24a_2._readonly_1p24a_76 textarea {
    background-color: var(--background-color-strong, #f7f7f7);
  }
}