As you can see in the image below the "Ms." in the select (first one) is aligned differently than in the input (second one), although both have the same width and both text's alignment is set to "left.
How can I get rid of that extra space on the left inside the select tag?
Here the Snippet:
.select, .input {
width: 45%;
text-align: left;
height: 1.5rem;
background-color: transparent;
display: block;
border-width: 0 0 2px 0;
border-style: solid;
border-color: mediumslateblue;
padding: 0;
margin-bottom: 12px;
margin-left: 10%;
}
<input type="text" class="input" value="Hello" />
<select name="" id="" class="select">
<option value="">Hello</option>
</select>