button {
 border: none;
 background: #0195dd;
 color: #0195dd;
 padding: 8px;
 font-size: 14px;
 border-radius: 5px;
 position: relative;
 box-sizing: border-box;
 transition: all 500ms ease;
}

button:hover {
 background: rgba(0,0,0,0);
 color: #ffffff;
 box-shadow: inset 0 0 0 3px #0195dd;
 color: #333333;
}

textarea, input, select, option, optgroup, button {
	font-family: "Trebuchet MS", "Lucida Sans Unicode", Arial, sans-serif;
}

button, [type="radio"], [type="checkbox"], [type="submit"], [type="button"], [type="reset"], label[for], select {
	cursor: pointer;
}