.default-input {
  padding: 4px 8px;
  border: 1px solid var(--blue-gray-200) !important;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  outline: none;
  transition: 0.1s ease-in-out;
  
  &:focus{
    box-shadow: 0 0 0 2px var(--primary-color);
    border: 1px solid var(--blue-gray-400);
  }
  
  &:hover {
    border: 1px solid var(--blue-gray-400);
  }
}

.input-off {
  padding: 4px 8px;
  width: 100%;
  border: 1px solid var(--blue-gray-200) !important;
  height: fit-content;
  transition: 0.1s ease-in-out;

  &.add-new {
    border: 1px solid var(--blue-gray-400);
  }
}

.input-on {
  padding: 4px 8px;
  width: 100%;
  border: 1px solid var(--blue-gray-400) !important;
  height: fit-content;
  transition: 0.1s ease-in-out;

  &.add-new {
    border: 1px solid var(--blue-gray-400);
  }
}

textarea {
  resize: none;
  cursor: default;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  height: 100%;
  border: 1px solid var(--blue-gray-400);
  transition: 0.15s ease-in-out;

  &:focus,
  &:hover {
    border: 1px solid var(--blue-gray-800);
  }
}