label,
legend {
  font-size: var(--psi-fs-label-16);
  line-height: var(--psi-lh-label-16);
  display: block;
  font-weight: var(--psi-fw-bold);
  margin-bottom: 0;
}

input,
textarea {
  font-size: var(--psi-fs-label-16);
  line-height: var(--psi-lh-label-16);
  border-radius: 0;
  width: 100%;
  padding: 12px 12px 6px;
  border: 1px solid var(--psi-color-gray-500);
}

textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--psi-color-gray-500);
}

input[type=text],
input[type=password],
input[type=date],
input[type=email],
input[type=number] {
  height: auto;
}

input[type=file] {
  height: inherit;
}

select {
  font-size: var(--psi-fs-label-16);
  line-height: var(--psi-lh-label-16);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--psi-color-white);
  border-radius: 0;
  color: var(--psi-color-black);
  padding: 8px 12px;
  text-indent: 0.01px;
  text-overflow: "";
}

select::-ms-expand {
  display: none;
}