Label and input letters are overlapping in React form.
Desired look: Top image
Current behavior: Bottom image
How can I fix it?
<h5 className="grey-text text-darken-3">Sign In</h5>
<div className="input-field">
<label htmlFor="email">Email</label>
<input type="email" id="email" onChange={this.handleChange}/>
</div>