div.Inputfields{
  background-color: whitesmoke;
  padding-bottom: 1em;
}
.Inputfield {
	clear: both;
	box-sizing: border-box;
}
.Inputfield:not(.InputfieldSubmit) {
	margin: 1% 0;
	padding:.5em .5em;
	border: 1px solid whitesmoke;
	background: whitesmoke;
}
.InputfieldHeader {
	/* primary label */
	font-weight:bold;
	font-size:1rem;
}
.Inputfield input[type=text],
.Inputfield input[type=email] {
	width: 100%;
}
.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 */
	background-color:rgb(130, 190, 5);
	border:1px solid rgb(130, 190, 5);
	color: white;
	font-size: small;
	font-weight: bold;
	padding: .2em 1em;
	border-radius: 2px;
	box-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.LoginRegisterError {
	/* error notification */
	background-color: pink;
	border: 1px solid red;
	color: darkred;
	font-size: small;
	font-weight: bold;
	padding: .2em 1em;
	border-radius: 2px;
	box-shadow: 0 1px 4px rgba(0,0,0,.4);
}
#LoginRegisterLoginForm h2 {
	font-size:1.1rem;
	font-weight:bold;
}
.InputfieldContent p.description {
	line-height: 1.5em;
	font-size: .8em;
}
#Inputfield_login_submit,#profile_submit,#register_submit,#submit_forgot,#Inputfield_confirm_submit {
	color: #fff;
	background-color: #73609e;
	border-color: #73609e;
	padding: .25rem .5rem;
	font-size: .9rem;
	line-height: 1.5;
	box-shadow: 1px 3px 5px #666;
	text-transform: uppercase;
	outline-width: 1px;
	border-radius: .2rem;
	transition: .5s;
} 
#Inputfield_login_submit:hover,#profile_submit:hover,#register_submit:hover,#submit_forgot:hover,#Inputfield_confirm_submit:hover{
    color:#fdbe03;
	transform: scale(1.1,1);
}
#wrap_Inputfield_login_submit,#wrap_profile_submit,#wrap_register_submit,#wrap_submit_forgot,#wrap_Inputfield_confirm_submit {
	margin:0 1em;
}
ul.LoginRegisterLinks{
	list-style:none;
	margin-top: 1em;
	padding-left:1em;
}
ul.LoginRegisterLinks li {
	margin-bottom: 1em;
}
.LoginRegisterLinksForgot a,
.LoginRegisterLinksRegister a,
.LoginRegisterLinksProfile a,
.LoginRegisterLinksLogout a {
  color: #444;
  background-color: whitesmoke;
  border-color: #73609e;
  padding: .25rem .5rem;
  font-size: .9rem;
  line-height: 1.5;
  box-shadow: 1px 3px 5px #666;
  text-transform: uppercase;
  outline-width: 1px;
  border-radius: .2rem;
  transition: .5s;
  display:inline-block;
}
.LoginRegisterLinksForgot a:hover,
.LoginRegisterLinksRegister a:hover,
.LoginRegisterLinksProfile a:hover,
.LoginRegisterLinksLogout a:hover {
    background-color: white;
    color:#1e6ed6;
	transform: scale(1.05,1);
}
i {
	margin-left: .15em;
	margin-right: .15em;
}