form.example input[type=text] {
	padding: 10px;
	font-size: 17px;
	border: 1px solid grey;
	float: left;
	width: 80%;
	background: #f1f1f1;
	}

	form.example button {
	float: left;
	width: 17%;
	background: #4f2d01;
	color: white;
	font-size: 17px;
	border: 1px solid grey;
	border-left: none;
	cursor: pointer;
	height: 41px;
	}

	form.example button:hover {
	background: #0b7dda;
	}

	form.example::after {
	content: "";
	clear: both;
	display: table;
	}