i am trying to create an input box like below

These are the rules i have attached
input {
height:30px;
width:286px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
-moz-background-clip: padding;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border-color:#cccccc;
padding:0 10px;
}
But i am getting an inner box shawdow like this.

Any idea how to remove that inner shawdow ?
Online Editor: http://jsfiddle.net/c3JCx/
try replacing:
with:
this will make the border with solid color as shown on the first image … the default
border-styleisinsetand it looks kind of “3D” as described in w3schools (second image)