input[type="text"], input[type="number"], input[type="date"], input[type="time"], input[type="password"], input[type="email"], textarea {
  outline: none;
  height: 40px;
  padding: 4px 12px;
  margin: 0;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  border-radius: 2px;
  border: solid 1px var(--color-border-primary);
  background-color: var(--color-bg-primary);
  color: var(--color-text-secondary);
  -webkit-appearance: none;
  appearance: none;

  &:disabled {
    background-color: var(--color-bg-disabled);
    color: var(--color-text-tertiary);
  }

  &.expand {
    width: 100%;
  }
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}
