:root {
  --color: #E74D6D;
}

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

.radio {
  font-size: 1.5rem;
  color: var(--color);
  font-weight: 600;
  display: grid;
  grid-template-columns: min-content auto;
  grid-gap: 0.5em;
}

.radio_input {
  display: flex;
}
.radio_input input {
  opacity: 0;
  width: 0;
  height: 0;
}
.radio_input input:focus + .radio_control {
  box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 0.1em currentColor;
}

input + .radio_control::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  box-shadow: inset 0.5em 0.5em currentColor;
  border-radius: 50%;
  transition: 180ms transform ease-in-out;
  transform: scale(0);
}

input:checked + .radio_control::before {
  transform: scale(1);
}

.radio_control {
  opacity: 1;
  display: grid;
  place-items: center;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 0.1em solid #e74d6d;
  transform: translateY(-0.05em);
}

.radio_label {
  line-height: 1;
}