.button-style {
    cursor:pointer;
    font-weight: bold;
    color: #ffffff; /* font color */
    border: 2px solid #ffffff;
    background: #4CB841;
    width: 110px;
    height: 40px;
    border-radius: 10px;
    -webkit-box-shadow: 2px 2px 10px 0px #d9d9d9;
    -moz-box-shadow: 2px 2px 10px 0px #d9d9d9;
    box-shadow: 2px 2px 10px 0px #d9d9d9;
}

.button-style:hover {
    background-color: #FF9933;  /* background color sentuhan cursor*/
    border: 2px solid #ffffff;
    color: #eeeeee; /* font color */
}

.button-style:active {
    background-color: #FF9933; /* background color sentuhan cursor*/
} 
