input {
  width: 100%;
  height: 5vh;
  padding-left: 10px;
  border-radius: 10px;
  border: 1px solid #818181;
  background: #254848;
  color: rgb(230,230,230);
  transition-duration: 0.2s;
  font-size: 15px;
}
input:hover {
  border: 1px solid rgb(230,230,230);
}

select {
  width: 100%;
  height: 5vh;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #818181;
  background: #254848;
  color: rgb(230,230,230);
  transition-duration: 0.2s;
  font-size: 15px;
  cursor: pointer;
}
select:hover {
  border: 1px solid rgb(230,230,230);
}
select option {
  background: #254848;
  color: rgb(230,230,230);
  cursor: pointer;
  font-size: 15px;
}
select option:hover {
  background: #254848;
  box-shadow: 0 0 10px 100px #1A3636 inset;
}

textarea {
  width: 100%;
  height: 5vh;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #818181;
  background: #254848;
  color: rgb(230,230,230);
  transition-duration: 0.2s;
  font-size: 15px;
  resize: none;
}

label {

}

.checkBox {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.checkBox:checked {
  background: var(--button-bg);
}
.checkBoxLabel {
  cursor: pointer;
  padding-left: 10px;
}
input[type="checkbox"] {
  appearance: none;
  width: 1.15em;
  height: 1.15em;
}
input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
}
input[type="checkbox"]:checked::before {
  transform: scale(1);
}
