'Why does the first radio button tilt towards the left more than the following sibling radio buttons?

I have added no styling whatsoever and this is what I see.

enter image description here

My code contains only html and is as found below:-

    <!DOCTYPE html>
    <html lang="en">
      <head>
        <meta charset="UTF-8" />
        <meta http-equiv="X-UA-Compatible" content="IE=edge" />
        
        <title>Document</title>
      </head>
      <body>
          <input type="radio" name="q3" value="elon" />Elon Musk<br />
          <input type="radio" name="q3" value="nikola" />Nikola Tesla<br />
          <input type="radio" name="q3" value="bill" />Bill Gates<br />
          <input type="radio" name="q3" value="jeffrey" />Jeffrey Archer<br />
      </body>
    </html>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source