Is there a way i can only change styling for the labels that are followed by the input tag only and not by select tag or any other tag
<label>Name</label>
<input type="text" placeholder="Name>
<label>City</label>
<select>
<option>Chandigarh</option>
<option>Mohali</option>
<option>Delhi</option>
</select>
Here , I Want both the labels should have different styling , I have tried selectors but unable to fix it.