.input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  font-weight: bold;
  font-size: 16px;
  border: 4px solid var(--colorGrayA01);
  border-radius: 8px;
  outline: 0;
}

/* .validate .input:invalid {
  border-color: #edb22faa !important;
} */

/* .validate .input:valid {
  border-color: aquamarine;
} */

.input:hover {
  border-color: var(--colorGrayA02);
}

.input:disabled {
  border-color: transparent;
  background: var(--colorGrayA01);
  /* background: #fff; */
  user-select: none;
  pointer-events: none;
}

.input.warning {
  border-color: #edb22faa;
}

.input:focus,
.input.focus {
  border-color: #2f80edaa !important;
}

textarea.input {
  height: auto;
  padding-top: 8px;
}

select.input {
  padding: 0 12px;
  color: gray;
}

select.input option {
  font-size: 14px;
  font-weight: normal;
  color: #000;
  background: #fff;
}

select.checked {
  color: #000;
}

select:checked {
  background: #000;
}

.input__error {
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  right: 16px;
  z-index: 99999;
  color: #fff;
  background: hsl(36deg 100% 50%);
  text-align: center;
  font-size: 12px;
}

.input__toggle {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 99999;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  user-select: none;
  color: #000;
}

.input__toggle svg {
  fill: var(--colorGray);
}

.input__toggle:hover svg {
  fill: var(--colorBlack);
}
