.text-field-box {
  position: relative;
  padding: 0.875em 1em;
  border: 1px solid var(--bs-neutrals-300);
  border-radius: 0;
}
.text-field-box:hover,
.text-field-box.focused {
  border: 1px solid var(--bs-dark);
}
.text-field-box textarea {
  width: 100%;
  height: 100%;
  border: none;
  cursor: text;
  resize: none;
  background-color: transparent;
  outline: unset;
}

.text-field-box label {
  position: absolute;
  top: 0.81rem;
  left: 1rem;
  padding-inline: 0.18rem;
  background-color: transparent;
  pointer-events: none;
  transition: 0.1s ease-in;
}

.text-field-box.focused label {
  font-size: 0.75rem;
  top: -0.65rem;
  color: #8b7856;
  background-color: var(--bs-secondary-50);
}
