I need the input type elements to be centered with aligned equally. I somehow manage to align the input type equally but now it's left aligned. I need it to be center aligned.
.container {
    width: 500px;
    clear: both;
}
.container input {
    width: 100%;
    clear: both;
}<div class="container"> 
    <label>EMP ID </label><input type="text" id="empid"> <br><br>
    <label>EMP NAME</label><input type="text" id="empname"> <br><br>
    <label>EMAIL ID</label><input type="text" id ="emailid"> <br><br>
</div> 
<input type="submit" class="appButton" value="INSERT" onclick="insert();"> <br><br>
       
     
     
     
    