.Inputfield {
	clear: both;
	box-sizing: border-box;
}
.Inputfield:not(.InputfieldSubmit) {
	margin: 1% 0;
	padding: 20px;
	border: 1px solid #eee;
	background: #eee;
}
.InputfieldHeader {
	/* primary label */
	font-weight: bold;
}
.Inputfield input[type=text],
.Inputfield input[type=email] {
	display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    vertical-align: middle;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid #cccccc;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.InputfieldColumnWidth {
	/* columns that are not 100% width */
	float: left;
	clear: none;
}
.InputfieldColumnWidthFirst {
	/* first column in a row of Inputfield columns */
	clear: both;
}
.InputfieldColumnWidth:not(.InputfieldColumnWidthFirst) {
	/* any column except first, in a row of Inputfield columns */
	margin-left: 1%;
}
.InputfieldPassword input {
	/* password input */
	width: 50%;
}
.LoginRegisterMessage {
	/* message notification */
	color: green;
	border: 1px solid green;
	font-weight: bold;
	padding: 10px 20px;
}
.LoginRegisterError {
	/* error notification */
	color: red;
	border: 1px solid red;
	font-weight: bold;
	padding: 10px 20px;
}