/* site styles */

:root {
	--primary-color: #555555;
	--secondary-color: #5eb0da;  
	--section-hover-color: #eee;
	--title-color: #333;
	--text-color: #333;
	--text-font: "Open Sans", sans-serif;
	--title-font: "Roboto Slab", sans-serif;
}

/* media settings for different screen sizes */
@media screen and (min-width: 1101px) {
	.loginBox {
		margin: 60px auto;
		width: 50%;
		padding: 20px;
		text-align: center;
	}
	#session_message {
		position: fixed;
		top: 0;
		left: 0;	
	}
	h1 {
		font-size: 60px;
		line-height: 60px;
	}	
}
@media screen and (min-width: 801px) and (max-width: 1100px) {
	.loginBox {
		margin: 60px auto;
		width: 90%;
		padding: 20px;
	}
	#session_message {
		position: fixed;
		top: 0;
		left: 0;	
	}
	h1 {
		font-size: 40px;
		line-height: 40px;
	}	
}
@media screen and (max-width: 800px) {
	.loginBox {
		margin: 5px auto;
		width: 98%;
		padding: 1%;
	}
	#session_message {
		position: relative;
		margin-bottom: 5px;	
	}	
	h1 {
		font-size: 30px;
		line-height: 30px;
	}	
}



:focus {outline:none}

input,
textarea,
select {
  font-family: var(--text-font);
  font-size: 16px;
  color: #777777;
}

body {
	/*background: url('../images/reputation-login-page.jpg') no-repeat;
	background-size: cover;
	background-attachment: fixed;*/
	background: #ccc;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: var(--text-font);
	font-size: 16px;
	color: #333333;	
}

h1 {
	font-weight: 300;
	color: #777777;
	text-align: center;
	padding-top: 10px;
	margin-bottom: 10px;
	transition: all 0.5s ease;
	font-family: var(--title-font);
}

a:link, a:visited, a:active {
	color: var(--primary-color);
	transition: all 0.5s ease;
}
a:hover {
	color: var(--secondary-color);
}

#message_post, #reset_message {
	position: fixed;
	display: none;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.5em;
	box-sizing: border-box;
	padding: 0;
	color: #fff;
	background: rgba(0,0,0,0.9);
}
#message_post p, #reset_message p {
	margin-top: 25%;
}

#session_message {
	display: inline-block;
	width: 100%;
	padding: 10px;
	text-align: center;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	background: rgba(255,255,255,0.6);
	z-index:10;
	-webkit-box-shadow: 0 0 15px #333;
	-moz-box-shadow: 00 0 15px #333;
	box-shadow: 0 0 15px #333;	
}

.error {
	color: red;
}
.success {
	color: green;
}

img.icons {
	position: relative;
	top: 4px;
	margin: 0 10px 0 0;
	width: 40px;
}

.loginBox {
	text-align: center;
	background: rgba(255,255,255,1.0);	
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 3px;
	transition: all 0.5s ease;
	box-shadow: 0 0 15px #333;
}

form {
	padding: 20px;
	margin: 0 auto;
	max-width: 600px;
}
form .inputRow {
	margin: 0 0 5px 0;
	position: relative;
	overflow: hidden;
}
form input[type="email"], form input[type="password"] {
	width: 100%;
	height: 60px;
	font-size: 1.5em;
	padding: 10px 10px 10px 120px;
	box-sizing: border-box;
	/*border: 1px solid #fff;*/
	border: none;
	color: #333;
	border-radius: 3px;
	-webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
	transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
	margin: 0;
	background: #eee;
}
form input[type="email"] + label, form input[type="password"] + label {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	height: 60px;
	line-height: 60px;
	font-size: 1.5em;
	font-weight: normal;
	width: 110px;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: white;
	background: var(--primary-color);
	border-radius: 3px 0 0 3px;
	-webkit-transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
	transition: all 0.3s cubic-bezier(1, 0.1, 0, 0.9);
	-webkit-transform: translateZ(0) translateX(0);
	transform: translateZ(0) translateX(0);
	transition: all 0.5s ease;
}
form input[type="email"]:focus, form input[type="password"]:focus {
	padding-left: 10px;
	/*border: 1px solid #0288D1;*/
	border: none;
}
form input[type="email"]:focus + label, form input[type="password"]:focus + label {
	-webkit-transform: translateZ(0) translateX(-101%);
	transform: translateZ(0) translateX(-101%);
}
form input[type="email"]:hover + label, form input[type="password"]:hover + label {
	background: var(--secondary-color);
}

input.button, a.button:link, a.button:active, a.button:visited {
	position: relative;
	display: inline-block;
	font-size: 1.0em;
	font-weight: 600;
	color: #ffffff;
	text-decoration: none;
	padding: 10px 30px;
	border: none;
	background: var(--primary-color);
	font-weight: normal;
	text-transform: uppercase;
	border-radius: 3px;
	transition: all 0.5s ease;
}
input.button:hover, a.button:hover {
	background: var(--secondary-color);
	cursor: pointer;
}

a.button:link, a.button:active, a.button:visited {
	text-decoration: none;
	color: #fff;
	margin: 10px 0;
}

.button-holder {
	position: relative;
	display: inline-block;
	text-align: center;
	padding-top: 10%;
}

/* jquery shake effects */	
.ui-effects-wrapper {
	display:inline;
}