.label {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 5px 0;
    border-radius: 100px;
    padding: 8px 10px;
    cursor: pointer;
    transition: .3s;
  }
  
  .label:hover,
  .label:focus-within,
  .label:active {
    background: #e2e7e652;
    border-radius: 5px;
  }
  
  .radio-input {
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    z-index: -1;
  }
  
  .radio-design {
    width: 18px;
    height: 18px;
    border-radius: 100px;
    background: linear-gradient(39deg,var(--cor2)1%,var(--cor4)99%);
    position: relative;
  }
  
  .radio-design::before {
    content: '';
    display: inline-block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    background: hsl(0, 0%, 90%);
    transform: scale(1.1);
    transition: .3s;
  }
  
  .radio-input:checked+.radio-design::before {
    transform: scale(0);
  }
  
  .label-text {
    color: hsl(0, 0%, 60%);
    margin-left: 14px;
    font-weight: 500;
    transition: .3s;
  }
  