/* Estilo del botón */
button {
    background-color:#32AA27;
    color:#FFFFFF;
	width:127px;
	height:36px;
	border:none;
	font-size:16px;
	cursor:pointer;
	transition: background-color 0.5s ease;
}

button:hover {
    background-color: #26801D;
}

