input:not(:is([type="radio"],[type="checkbox"],[type="submit"],[type=image],[type=file])),select,textarea {
  width: 100% !important;
  line-height: 1 !important;
}
input:not(:is([type="radio"],[type="checkbox"],[type="button"],[type="submit"],[type="image"],[type="file"])),select,textarea {
  outline: none;
  border-radius: 0;
  font-size: inherit;
  color: currentColor;
  height: min(38px,9vw);
  background-color: var(--cLwhite);
  border: 1px solid var(--cLgray94);
  padding: min(1rem,2.5vw) min(1.5rem,5vw) !important;
}
select[multiple="multiple"] {
  height: auto!important
}
input:is([type="radio"],[type="checkbox"]) {
  margin: 0 .5rem 0 0;
  outline: none;
  flex: 0 0 auto;
  width: min(1.5rem,4vw);
  height: min(1.5rem,4vw);
  accent-color: var(--cLyellow)
}
input[type="checkbox"] {
  box-shadow: inset 0 0 0 1px var(--cLyellow)
}
input[type="radio"]:not(:checked) {
  appearance: none;
  border-radius: 2rem;
  border: 1px solid var(--cLyellow)
}
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  font-style: normal;
  color: currentColor;
  text-align: left;
  opacity: .5;
}
textarea::-moz-placeholder,
input::-moz-placeholder {
  font-style: normal;
  color: currentColor;
  text-align: left;
  opacity: .5;
}
textarea::-ms-input-placeholder,
input::-ms-input-placeholder {
  text-align: left;
  font-style: normal;
  color: currentColor;
  opacity: .5;
}
textarea::placeholder,
input::placeholder {
  font-style: normal;
  color: currentColor;
  text-align: left;
  opacity: .5;
}
:is(input[type="date"],select):not(:focus) {
  color: currentColor
}
textarea {
  resize: none;
  font-family: inherit;
  height: min(200px,30vw) !important
}
input[type="date"] {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none
}
/* other */
:is(.row,.flex):has(.full,.half) {gap: min(0.7rem,5vw) 10%;}
:is(.row,.flex) > .full {flex:1 1 100%;}
:is(.row,.flex) > .half {flex:1 1 max(300px,40%);}