@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600');

@font-face {
  font-family: hobo;
  src: url(../fonts/HoboStd.otf);
}

@font-face {
  font-family: jellee;
  src: url(../fonts/Jellee-Roman.ttf);
}

* {
	box-sizing: border-box;
	transition: width 0.5s ease, height 0.5s ease, left 0.5s ease, right 0.5s ease, top 0.5s ease, bottom 0.5s ease, background 0.5s ease, border 0.5s ease, color 0.5s ease, filter 0.5s ease;
}

html {
	font-size: 62.5%;
}

html, body {
	height: 100%;
}

body {
	width: 100%;
	margin: 0px;
	background: #182534;
	background: -moz-linear-gradient(top,  #B6E7FF 0%, #182534 100%);
	background: -webkit-linear-gradient(top,  #B6E7FF 0%,#182534 100%);
	background: linear-gradient(to bottom,  #B6E7FF  0%,#182534 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#B6E7FF', endColorstr='#394C75',GradientType=0 );
	background-attachment: fixed;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.3rem;
	font-weight: 600;
	color: #444;
}

h1 {
	font-size: 2.0rem;
	font-family: jellee, sans-serif;
	font-weight: normal;
}

a {
	color: #444;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px dashed #444;
}

a:hover {
	color: #4B6666;
	border-bottom: 1px dashed #4B6666;
	font-weight: bold;
}

#bg-pattern {
	position: fixed;
	width: 100%;
	height: 100%;
	background-image: url(../images/background.png);	
	background-attachment: fixed;
}

#foreground {
	position: fixed;
	width: 100%;
	height: 100%;
	background-image: url(../images/foreground.png);
	background-repeat: no-repeat;
	background-position: 100% 25%;
}
@media only screen and (max-width: 1400px) {
	#foreground {
		background-position: 70% 25%;
	}
}

#container {
	width: 100%;
	height: 100%;
}

#padding {
	padding: 20px 0px;
}

#login-container {
	width: 360px;
	height: 100%;
	margin-left: 250px;
}
@media only screen and (max-width: 1800px) {
	#login-container {
		margin-left: 200px;
	}
}
@media only screen and (max-width: 1600px) {
	#login-container {
		margin-left: 150px;
	}
}
@media only screen and (max-width: 1400px) {
	#login-container {
		margin-left: 100px;
	}
}
@media only screen and (max-width: 900px) {
	#login-container {
		margin-left: auto;
		margin-right: auto;
	}
	.grecaptcha-badge {
		display: none;
	}
}

#login-content {
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 360px;
	padding: 30px;
	text-align: center;
	border-radius: 5px;
	background: #fbfbfb;
}
@media only screen and (max-width: 1400px) {
	#login-content {
		background: rgba(255, 255, 255, 0.8);
	}
}
@media only screen and (max-width: 900px) {
	#login-content {
		background: rgba(255, 255, 255, 0.9);
	}
}

#logo-container {
	margin-bottom: 34px;
}

#logo-container img {
	margin-right: 10px;
}

#logo-container h1 {
	font-size: 2.0rem;
	font-weight: 200;
	color: #3D4455;
	margin: 0px;
	text-align: center;
}


#facebook-button {
	display: table;
	width: 100%;
	height: 70px;
	padding-left: 20px;
	font-family: jellee, sans-serif;
	font-size: 1.8rem;
	font-weight: 200;
	line-height: 1.8rem;
	color: #FFF;
	background: #475a96; /* Old browsers */
	background: -moz-linear-gradient(top, #475a96 1%, #314a80 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #475a96 1%,#314a80 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #475a96 1%,#314a80 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#475a96', endColorstr='#314a80',GradientType=0 ); /* IE6-9 */
	border-radius: 5px;
	border: none;
	margin-bottom: 40px;
	text-decoration: none;
}

#facebook-button div {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	padding-top: 4px;
}

#facebook-button div:first-of-type{
	width: 36px;
}

#facebook-button div span {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
}


#or-container {
	position: relative;
	text-align: center;
	margin-bottom: 40px;
}

#or-container #or-circle {
	position: relative;
	height: 35px;
	width: 35px;
	background-color: #3D4456;
	border-radius: 50%;
	display: inline-block;
	color: #FFF;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	padding: 9px;
}

#or-container hr {
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	margin: 0px;
	border: none;
	border-top: 1px solid #3D4456;
}

.field-wrapper {
	position: relative;
}

.field-wrapper .symbol {
	cursor: pointer;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	min-width: 3rem;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 600;
	padding-bottom: 1.6rem;
}

.field-wrapper .symbol i {
	font-size: 1.8rem;
	color: #182534;
}

input[type="text"], input[type="email"], input[type="password"] {
	width: 100%;
	height: 55px;
	font-family: 'Open Sans', sans-serif;
	font-size: 1.4rem;
	border: 1px solid #CCC;
	margin-bottom: 20px;
	padding: 10px 20px;
}

input[type="password"] {
	padding-right: 4.6rem;
}

input[type="submit"]
{
	height: 50px;
	width: 100%;
	font-family: jellee, sans-serif;
	font-size: 1.4rem;
	text-transform: uppercase;
	border: none;
	border-radius: 5px;
	color: #FFF;
	background-image: url(../images/button_background.png);
	margin-top: 20px;
	margin-bottom: 30px;
	cursor: pointer;
}
input[type="submit"].login {
	margin-top: 0px;
}

input[type="text"].error, input[type="email"].error, input[type="password"].error, select.dropdown.error, textarea.textarea.error {
	border: 1px solid #E91E63;
	color: #E91E63;
	box-shadow: 2px 2px 3px #DDD;
	margin-bottom: 0px;
}

.field-error {
	margin-top: 5px;
	margin-bottom: 20px;
	color: #E91E63;
	font-size: 1.2rem;
	text-align: left;
}
.field-error.recaptcha {
	margin-bottom: 0px;
}
.field-error.login {
	margin-bottom: 20px;
	text-align: center;
}

.no-select {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none;
}

#success-message {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 50px;
	background-color: #009688;
	color: #FFF;
	text-align: center;
	line-height: 5.0rem;
	font-weight: 600;
}

.hidden {
	display: none;
}