#botoes {
width: 270px;
margin-left: 20px;
}
#botao {
float: right;
padding: 5px;
15px;
font: bold 12px sans-serif;
border-radius: 20px;
box-shadow: 0px 1px 0px white;
border: 1px solid #9eb9c3;
background: #edf6f9;
background: -webkit-linear-gradient(#edf6f9 0%, #cde5ee 100%);
background: -moz-linear-gradient(#edf6f9 0%, #cde5ee 100%);
background: -o-linear-gradient(#edf6f9 0%, #cde5ee 100%);
background: linear-gradient(#edf6f9 0%, #cde5ee 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#edf6f9', endColorstr='#cde5ee', GradientType=0);
color: #527988;
box-shadow: 0px 0px 10pc #c9c9c9
}
#botao:hover {
background: #cde5ee;
background: -moz-linear-gradient(top, #cde5ee 0%, #edf6f9 100%);
background: -webkit-linear-gradient(top, #cde5ee 0%, #edf6f9 100%);
background: linear-gradient(to bottom, #cde5ee 0%, #edf6f9 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cde5ee', endColorstr='#edf6f9', GradientType=0);
cursor: pointer;
}
<div id=botoes>
<div id="botao">
<input type="submit" name="enviar" value="Enviar">
</div>
<div id="botao">
<input type="reset" name="limpar" value="Reset">
</div>
<div id="lembrar-senha">
<input type="checkbox" />Lembrar senha
</div>