html
{
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
}
body
{
	width: 100%;
	max-width: 360px;
}
#user-login input:-webkit-autofill
{
	-webkit-box-shadow: inset 0 0 0px 9999px rgb(241,241,241);
}
#loginFormContainer
{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -100px;
	width: 100%;
	max-width: 360px;
}
#loginForm
{
	font-family: 'Open Sans', sans-serif; /*'PT Sans', sans-serif;*/
	width: 100%;
	max-width: 360px;
	background-color: white;
	padding: 20px;
	border-radius: 5px;
}
#loginForm input
{
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
	width: 100%;
	max-width: 360px;
	padding: 4px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 3px 0;
	border: 1px solid #dfdfdf;
	border-radius: 5px;
	box-sizing: border-box;
}
#loginFormLogo
{
	margin-bottom: 20px;
	text-align: center;
	width: 96%;
	max-width: 350px;
	font-family: 'Open Sans', sans-serif;
	font-size: 20px;
	font-weight: 400;
	font-style: italic;
}
	#loginFormLogo > img
	{
		height: 45px;
	}
#loginForm #loginFooter
{
	position: relative;
	width: 100%;
	max-width: 360px;
}
#loginForm .forgot_password
{
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 400;
  position: relative;
  margin-top: 5px;
	top: 10px;
	text-align: center;
}
#loginForm .forgot_password a
{
	color: #40CFE8;
	text-decoration: none;
}
#loginForm .forgot_password a:hover
{
	color: #000;
}
#loginForm #button_box
{
	color: #ffffff;
	max-width: 350px;
	margin: 5px 0;
	overflow: hidden;
}
#button_box #demo_link
{
	float: left;
	font-family: 'Open Sans', sans-serif; /*'PT Sans', sans-serif;*/
	font-size: 14px;
	font-weight: 400;
	padding-top: 14px;
	padding-left: 5px;
}
#button_box #demo_link a
{
	color: #72c7ff;
	text-decoration: none;
	font-weight: 700;
}
#button_box #demo_link a:hover
{
	color: #ffffff;
}
#button_box button.login
{
	font-size: 16px;
	color: #fff;
	background-color: #40CFE8;
	background-size: 100% 100px;
	border: none;
	float: right;
	width: 100%;
	max-width: 360px;
	line-height: 36px;
	outline:none;
	transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	border-radius: 5px;
	cursor: pointer;
}
#loginForm button.login:hover
{
	background-position: 0px 50px;
	box-shadow: 0 0 10px rgba(255, 255, 255, .25);
	-webkit-box-shadow: 0 0 10px rgba(255, 255, 255, .25);
	-moz-box-shadow: 0 0 10px rgba(255, 255, 255, .25);
}
#loginForm button.login:active
{
	background-position: 0px 41px;
}
p #reset_email
{
	background-color: #F1F1F1
}
#button_box button.reset
{
	background: url("/images/sprite-button-reset-new.jpg") repeat scroll 0px 0px transparent;
	border: none;
	float: right;
	width: 100%;
	max-width: 360px;
	height: 50px;
	outline:none;
	transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
}
#loginForm button.reset:hover
{
	background-position: 0px 50px;
	box-shadow: 0 0 10px rgba(255, 255, 255, .25);
	-webkit-box-shadow: 0 0 10px rgba(255, 255, 255, .25);
	-moz-box-shadow: 0 0 10px rgba(255, 255, 255, .25);
}
#loginForm button.reset:active
{
	background-position: 0px 41px;
}
#button_box button.confirm
{
	background: url("/images/sprite-button-confirm-new.jpg") repeat scroll 0px 0px transparent;
	border: none;
	float: right;
	width: 100%;
	max-width: 360px;
	height: 50px;
	outline:none;
	transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
}
#loginForm button.confirm:hover
{
	background-position: 0px 50px;
	box-shadow: 0 0 10px rgba(255, 255, 255, .25);
	-webkit-box-shadow: 0 0 10px rgba(255, 255, 255, .25);
	-moz-box-shadow: 0 0 10px rgba(255, 255, 255, .25);
}
#loginForm button.confirm:active
{
	background-position: 0px 41px;
}
.sloginfailmessage
{
	margin: 0 auto;
	text-align: center;
	width: 100%;
	max-width: 290px;
	color: red;
	background-color: #efefef;
	border: 1px solid #dfdfdf;
	border-radius: 8px;
	-moz-border-radius: 8px;
	position: relative;
	bottom: 120px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-size: 12pt;
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
}
