/***FIRST STYLE THE BUTTON***/
input#bigbutton {
width:90%;
background:#dcddde; /*the colour of the button*/
padding:8px 14px 10px; /*apply some padding inside the button*/
border:1px solid #dcddde; /*required or the default border for the browser will appear*/
cursor:pointer; /*forces the cursor to change to a hand when the button is hovered*/
/*style the text*/
font-size:1.8em;
font-family:Oswald, sans-serif; /*Oswald is available from http://www.google.com/webfonts/specimen/Oswald*/
letter-spacing:.05em;
text-shadow:0 -1px 0px rgba(0, 0, 0, 0.3); /*give the text a shadow - doesn't appear in Opera 12.02 or earlier*/
color: #000;

/*give the corners a small curve*/
-moz-border-radius:10px;
-webkit-border-radius:10px;
border-radius:10px;
}
/***SET THE BUTTON'S HOVER AND FOCUS STATES***/
input#bigbutton:hover, input#bigbutton:focus {
color:#000;
/*reduce the size of the shadow to give a pushed effect*/
-webkit-box-shadow: inset 0px 1px 0px #FFD4E1, 0px 2px 0px 0px #205c73, 0px 2px 5px #999;
-moz-box-shadow: inset 0px 1px 0px #FFD4E1, 0px 2px 0px 0px #205c73, 0px 2px 5px #999;
box-shadow: inset 0px 1px 0px #FFD4E1, 0px 2px 0px 0px #205c73, 0px 2px 5px #999;
}