body 
{
    background-color: #dedede; /*rgb(32, 28, 41)*/
    min-height: 100vh
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input {
  padding: 2px 8px !important;
}


input[type="checkbox"] {
  position: relative;
  width: 24px;
  height: 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 2px solid #ccc;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
}

input[type="checkbox"]:before,
input[type="checkbox"]:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

input[type="checkbox"]:before {
  width: 16px;
  height: 16px;
  background-color: #fff;
}

input[type="checkbox"]:after {
  width: 8px;
  height: 8px;
  background-color: red;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

input[type="checkbox"]:checked:after {
  opacity: 1;
}
