.form-control {
  font-family: system-ui, sans-serif;
  color: #362765;
  font-size: 2rem;
  font-weight: bold;
  line-height: 0.8;
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  border:none;
  box-shadow:none;
}

.form-control + .form-control {
  margin-top: 1em;
  border:none;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: #362765;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid #362765;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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 #362765;
  background-color: #362765;
}

input[type=radio]:checked::before {
  transform: scale(1);
}

input[type=radio]:focus {
  outline: max(2px, 0.15em) solid #362765;
}
