JSFiddle - React, Tailwind, and code Playground

HTML

<form>
  <div>
    <label class="radio-inline" style="padding-left:30px;">
      <input type="radio" name="optradio" required>Retailer
    </label>

    <label class="radio-inline">
      <input type="radio" name="optradio">Other - Please specify
    </label>
    <input id="form_other" type="text" name="other" class="form-control" placeholder="Please specify">
  </div>


  <div class="form-group">
    <label for="sel1">Which division of our company are you interested in *</label>
    <select class="form-control" id="sel1" required>
      <option value="">Please select one</option>
      <option>Video game consoles and accessories</option>
      <option>Gaming and entertainment gift cards/codes</option>
      <option>Both</option>
    </select>
  </div>




  <input type="submit" value="send" />
</form>