body {
	margin: 0;
	font: 15px/1 'Raleway', sans-serif;
	color: white;
	text-align: center;
	background: #262624 url('/images/index/background.jpg') center no-repeat;
	background-size: cover;
}
.wrapper {
	min-height: calc(100vh - 100px);
	display: flex;
	flex-direction: column;
	position: relative;
}
select, input {
	color: #333;
	background-color: #E4E4E4;
}
button:focus, input:focus, select:focus {
	box-shadow: 0 0 5px 2px #eee;
}
input[type="checkbox"]:focus + .check {
	box-shadow: 0 0 5px 1px #eee;
}
select, input, button {
	padding: 0 1em;
	border-radius: 4px;
	font-weight: bold;
	height: 3em;
}
h1 {
	line-height: 1.5;
}
#video-container {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	overflow: hidden;
	z-index: -2;
}
video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media (min-aspect-ratio: 16/9) { video { width: 100%; } }
@media (max-aspect-ratio: 16/9) { video { height: 100%; } }

button {
	text-transform: uppercase;
	transform: scale(1.001);
	transition: 0.3s;
}
button:hover {
	transform: scale(1.05);
}
select { padding-right: 2.5em; background: #E4E4E4 url(/images/index/arrow.svg) calc(100% - 0.7em) center no-repeat; background-size: 1em; }
.check { background: #E4E4E4; border-color: transparent !important; color: #E6569F; }
.terms-rarr { color: red; }

.form-group {
	display: flex;
	flex-direction: column;
	margin: 10px;
}
.Login button, .PasswordRecovery button {
	background: #E6569F;
	color: white;
}
.Registration button {
	background: #38A858;
	margin-top: 2.2em;
}
.form-group label {
	color: #B5B5B5;
	text-transform: uppercase;
	font-size: 14px;
	padding: 10px 0;
}

/* :checked + .check {
	color: #E6569F;
} */
/* ============================== HEADER ============================== */
.top-nav {
	position: absolute;
	display: flex;
	justify-content: flex-end;
	color: #E4E4E4;
	top: 25px;
	right: 30px;
	z-index: 2;
}
#locale-toggle, #login-toggle {
	text-transform: uppercase;
	background-color: rgb(34, 34, 34, 0.4);
}
#locale-toggle:hover, #login-toggle:hover,
#locale-toggle:focus, #login-toggle:focus,
#locale-toggle.active, #login-toggle.active {
	background-color: rgb(34, 34, 34, 0.8);
}
#login-toggle {
	padding: 12px 40px;
	margin-right: 10px;
}
#locale-toggle {
	padding: 12px 20px;
}
#locale-toggle .long {
	display: none;
}
#locale-list, #login-form {
	display: none;
	position: absolute;
	top: 45px;
	right: 0;
	background-color: rgb(34, 34, 34, 0.8);
}
#locale-list.active, #login-form.active {
	display: block;
	z-index: 2;
	width: 320px;
	text-align: left;
	border-radius: 4px;
	box-shadow: 0px 6px 7px rgba(154, 163, 165, 0.5);
}
#login-form .logo {
	display: none;
}
#login-form .form-group {
	margin: 15px;
}
#locale-list {
	columns: 2;
	padding: 10px 0;
}
#locale-list a, #locale-list span {
	display: inline-block;
	width: 100%;
	padding: 10px 20px;
	text-align: right;
}
#locale-list span {
	background: rgb(34, 34, 34);
	font-weight: bold;
}
.remember-group {
	font-size: 12px;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	letter-spacing: 0.24px;
}
.forgot-group {
	display: none;
}
.remember-group label {
	font-size: inherit;
	text-transform: none;
	padding: 0;
}
#rememberMe + .check {
	font-size: 24px;
	margin-right: 5px;
}
#forgot-password-toggle {
	color: #FF74BA;
	font-weight: bold;
}
/* ============================== MAIN CONTENT ============================== */
h1 {
	text-transform: uppercase;
	color: white;
}
h1 strong {
	color: #E6569F;
}
.logo {
	max-width: 300px;
}
.main-section {
	padding-bottom: 120px; /* to compensate for terms absolute positioning */
	margin: auto;
	position: relative;
}
.bd-values {
	display: flex;
}
.submit-group {
	min-width: 15em;
	max-width: 400px; /* for when there's a global error */
}
.form-group.terms-group {
	position: absolute;
	top: 100%;
	right: 0;
	flex-direction: row;
	text-transform: none;
	font-size: 10px;
	line-height: 1.6;
	color: white;
	margin: 30px 0 0;
}
.terms-group a {
	font-weight: bold;
}
.terms-rarr {
	top: 10px
}
.Registration {
	display: inline-flex;
	background-color: rgba(34, 34, 34, 0.8);
	position: relative;
	text-align: left;
	padding: 1em;
	border-radius: 8px;
	margin: auto;
}
/* ============================== FORGOT PASS ============================== */
#forgot-password-form {
	border-radius: 8px;
	color: #333;
}
#forgot-password-form label {
	color: #666;
	text-transform: none;
	text-align: left;
}
/* ============================== FOOTER ============================== */
footer {
	padding: 10px;
	color: #999;
	background: #262624;
	position: relative;;
}
footer a {
	display: inline-block;
	padding: 1em;
	font-weight: bold;
	transition: 0.3s;
	text-transform: uppercase;
}
footer a:hover, footer a:focus {
	color: #E4E4E4;
}
.copyright {
	font-size: 12px;
	margin: 0;
	padding: 1em;
}
/* ============================== MEDIA QUERIES ============================== */
@media (max-width: 1200px) {
	.Registration {
		font-size: 14px;
	}
}

@media (max-width: 1020px) {
	.main-section {
		padding-top: 80px;
	}
	.Registration {
		flex-direction: column;
	}
	.submit-group {
		align-self: stretch;
	}
	.Registration button {
		margin: 0;
	}
	.form-group.terms-group {
		position: relative;
		top: auto;
		bottom: auto;
		margin: 10px 0 0;
		max-width: 400px;
	}
}

@media (max-width: 800px) {
	.wrapper {
		min-height: auto;
	}
	#video-container {
		position: relative;
		height: 100vw;
	}
	video {
		width: 100%;
		height: auto;
	}
	.wrapper {
		margin-top: -60vw;
		background: linear-gradient(transparent, #262626 20%);
	}
	.main-section {
		margin-top: -20vw;
		padding: 0;
	}
	.headline {
		margin-bottom: 0;
	}
	.Registration {
		background: transparent;
	}
	#nav-toggle {
		display: block;
		z-index: 3;
	}
	.hamburger::before {
		position: absolute;
		content: '';
		top: 0.2em;
		right: 0.2em;
		bottom: 0.2em;
		left: 0.2em;
		background-color: rgb(34, 34, 34, 0.5);
		border-radius: 4px;
	}
	.menu-active {
		overflow: hidden;
	}
	.modal-active .hamburger {
		opacity: 0.05;
		pointer-events: none;
	}
	.top-nav:not(.active) {
		display: none;
	}
	.top-nav {
		position: fixed;
		z-index: 2;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		flex-direction: column;
		justify-content: space-between;
		background-color: #262624;
		padding: 5%;
		overflow-y: auto;
	}
	.top-nav::before, .top-nav::after {
		content: '';
	}
	.logo {
		max-width: 240px;
	}
	#login-form .logo {
		display: block;
		margin: 0 auto;
		margin-bottom: 30px;
	}
	#login-form .form-group {
		margin: 24px 0;
	}
	#login-toggle, #locale-toggle .short {
		display: none;
	}
	#login-form, #locale-toggle .long {
		display: block;
	}
	#login-form, #locale-list {
		position: static;
		width: 100% !important;
		box-shadow: none !important;
		background: transparent;
		max-width: 400px;
		margin: 40px auto;
	}

	#locale-toggle {
		background: #E4E4E4 url(/images/index/arrow.svg) calc(100% - 0.7em) center no-repeat !important;
		background-size: 1em !important;
		color: #262624 !important;
		border-radius: 4px;
		padding: 1em;
		max-width: 370px;
		width: 100%;
		margin: auto;
	}
	#locale-list a, #locale-list span {
		text-align: center;
	}
	.forgot-group {
		display: flex;
	}

	.form-group:not(.submit-group) {
		margin: 0 10px;
	}
}

/*105286.1.509.58.fc81bce*/