After searching and trying everything, I can't get rid of the iOS style on my form.
Here is what I have on PC / Android
HTML Code:
<form method="post" >
        <fieldset style= "border-width: 0px;" >             
        
    <input style="font-size : 30px; height:48px; width:50px;" type="text" name="pone" id="pone" autocomplete="off"> 
            <input style="font-size : 30px; height:48px; width:50px;" type="text" name="ptwo" id="ptwo" autocomplete="off"> 
                    <input style="font-size : 30px; height:48px; width:50px;" type="text" name="pthree" id="pthree" autocomplete="off"> 
                            <input style="font-size : 30px; height:48px; width:50px;" type="text" name="pfour" id="pfour" autocomplete="off"> 
                                    <input style="font-size : 30px; height:48px; width:50px;" type="text" name="pfive" id="pfive" autocomplete="off"> 
            
            
            
            <label>
                <INPUT style="width:250px; height:50px; font-size : 30px" class="submit" type="submit" name="envoyer" id="envoyer" value="    SE LIBERER     ">
            </label><br /><br />
        </fieldset>
And my CSS:
input {
border-radius: 0;
}
input[type=text], input[type=button], input[type=submit] {
-webkit-appearance: none;
-webkit-border-radius: 0;
}I tried also only input{ and input[type]{ Any tips here to have the same result than Android ?
Thank you!
 
    