html, body {
	min-height: 100%;
	font-family: "Cousine", "Courier New", sans-serif;
	margin: 0;
}

.container {
	width: 100%;
	position: absolute;
	top: 100px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	height: 100%;
}

form {
	position: relative;
	border-left: 1px solid #a6a6a6;
	border-right: 1px solid #a6a6a6;
	padding: 3em;
}

legend {
	color: #cc3300;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 4px;
	font-size: 22px;
}

fieldset {
	margin-bottom: 40px;
}

label {
	color: #4d4d4d;
	display: inline-block;
	width: 30%;
	font-size: 20px;
	float: left;
}

#checklabel {
	width: 75%;
	display: inline-block;
	float: none;
}

.inputcontainer {
	display: inline-block;
	width: 100%;
	margin-bottom: 15px;
}

#checkboxdiv {
	width: 100%;
}

input[type=text] {
	width: 65%;
	font-family: inherit;
	font-size: 20px;
	border-radius: 3px;
	border: 1px solid #bbb;
	-webkit-transition: background .3s ease-in-out;
	-moz-transition: background .3s ease-in-out;
	-ms-transition: background .3s ease-in-out;
	-o-transition: background .3s ease-in-out;
	transition: background .3s ease-in-out;
}

input[type=text]:focus {
	border-color: red;
	outline: none;
}

input[type=text]:focus + label {
	color: red;
}

input[type=checkbox] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 30px;
	height: 30px;
	border: 2px solid #555;
	background: white;
	border-radius: 5px;
	position: relative;
	top: 9px;
	padding: 0;
	margin: 0;
	vertical-align: top;
	position: relative;
	top: -3px;
	*overflow: hidden;
}

input[type=checkbox]:focus {
	outline: none;
}

input[type=checkbox]:checked {
	background: red;
}

span {
	color: red;
	font-variant: small-caps;
	font-size: 22px;
	display: none;
}

.invalid {
	background: pink;
}

select {
	font: inherit;
}

img {
	width: 40px;
	height: 40px;
	cursor: pointer;
	margin-top: 10px;
	margin-left: 10px;
}