:root {
    --form-control-color: rgb(29, 19, 168);
  }

*,
*:before,
*:after {
  box-sizing: border-box;
}

.custom-radio {
  font-family: system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.1;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
}

.custom-radio input[type="radio"]{
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

.custom-radio + .custom-radio {
  margin-top: 1em;
}

.custom-radio input[type="radio"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: CanvasText;
}

.custom-radio input[type="radio"]:checked::before {
  transform: scale(1);
  color: var(--form-control-color);
}

.custom-radio input[type="radio"]:focus {
  outline: max(1px, 0.05em) solid currentColor;
  outline-offset: max(1px, 0.05em);
}

.custom-mb-1 {
  margin-bottom:1rem;
}

.custom-mt-1 {
  margin-top:1rem;
}

.custom-input:focus
{
  background:rgb(211, 215, 252);
  outline: 1px solid black;
  border-radius: 3px;
}





