body { font-family: 'Montserrat', sans-serif; }
label { text-align: left; }
button, input, select, .check { background: #d2dadc; text-transform: uppercase; }
select { background: #d2dadc url(/images/index/arrow.svg) calc(100% - 0.7em) center no-repeat; background-size: 1em; }
h1, h3 { color: #002443; }
h1 { font: bold 2.5vw 'Montserrat', sans-serif; margin: 6% 0; }
h1 span, .terms-rarr, .terms-group a,
#forgot-password-form .close:hover { color: #da267a; }

html {
	background: #fff url(/images/index/desktop.jpg) 20% center no-repeat;
	background-size: cover;
	min-height: 100vh;
	color: #5a6d72;
}
.wrapper {
	width: 50%;
	min-width: 400px;
	margin-left: auto;
	min-height: 100vh;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	flex-direction: column;
}
.main-section {
	flex: 1;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 0 30px;
}
header {
	display: flex;
	flex-direction: column;
}
.logo {
	display: block;
	width: 235px;
	max-width: 50%;
	margin: 15px auto 0;
	order: 2;
}

/* ============================== TOP - Switch Locale and Login ============================== */
#login-toggle, #locale-toggle {
	display: inline-block;
	vertical-align: baseline;
}
#login-toggle, #locale-toggle {
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	padding: 0 10px;
}
[id$="-toggle"].active, [id$="-toggle"]:hover, [id$="-toggle"]:focus {
	color: #002443;
}
#locale-toggle {
	border-left: 3px solid #d2dadc;
}
#locale-toggle .long {
	display: none;
}
#locale-list, #login-form {
	display: none;
	position: absolute;
	z-index: 9;
	width: 330px;
	right: 0;
	top: 30px;
	background: #fff;
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.5);
}
#locale-list {
	text-align: center;
	padding: 10px 0;
	columns: 2;
}
#locale-list a {
	font-size: 16px;
	margin: 5px 0;
	text-align: center;
}
#locale-list a, #locale-list span {
	display: inline-block;
	width: 100%; /* This works better than display: block for columns: 2 */
	padding: 8px 0;
}
#locale-list span {
	background-color: #dfe9eb;
}
.top-nav {
	text-align: right;
	position: relative;
	margin: 20px;
}
#login-form {
	padding: 10px;
}
#login-form label {
	padding: 0;
}
#login-form .forgot-group {
	justify-content: center;
	margin: 0;
}
#forgot-password-toggle {
	font: bold 12px/1.83 'Montserrat', sans-serif;
	letter-spacing: 0.2px;
	color: #b6296b;
	cursor: pointer;
}
#login-form button {
	background: #002443;
	color: #fff;
}
#login-form.active, #locale-list.active {
	display: block;
}
#login-form.active {
	overflow: hidden; /* prevent button hover scrollbar */
}

/* ============================== MAIN - Registration ============================== */
.Registration {
	max-width: 400px;
	margin: 0 auto;
}
.form-group {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 15px;
}
.form-group label {
	width: 100%;
	font-size: 14px;
	padding-bottom: 10px;
}
.form-group select, .form-group button, .form-group input:not([type="checkbox"]) {
	width: 100%;
	padding: 0.75em 1em;
	font-weight: bold;
	font-size: 15px;
}
.Registration button, .PasswordRecovery button {
	background-color: #da267a;
	color: #fff;
	font-size: 24px;
	letter-spacing: 1px;
}
.Registration a:hover, #forgot-password-toggle:hover {
	text-decoration: underline;
}
button {
	transition: all .2s ease-in-out;
}
button:hover {
	transform: scale(1.05);
	box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.4);
}
input[type="checkbox"]:checked + .check { border-color: transparent; color: white; }

#rememberMe + .check { font-size: 24px; border-color: transparent; }
#rememberMe:checked + .check { background-color: #5a6d72; }
#agree:checked + .check { background-color: #da267a; }
.terms-group {
	flex-wrap: nowrap;
}
.terms-group a {
	font-weight: bold;
}
/* ============================== BOTTOM - Cookies and Footer ============================== */
#cookie-popup a {
	color: #da267a !important;
}
#cookie-popup .accept {
	background: #002443 !important;
	color: #fff !important;
}
footer {
	margin-top: auto;
}
footer a {
	padding: 15px;
	font-size: 12px;
	font-weight: bold;
	color: #5a6d72;
	display: inline-block;
	text-transform: uppercase;
	transition: 0.3s;
}
footer a:hover {
	color: #000;
}
.warningNotification, .copyright {
	color: #9b9b9b;
	font-size: 10px;
	margin: 1em;
	display: inline-block;
	vertical-align: top;
}
/* ============================== Mobile media queries ============================== */

@media (max-width: 1280px) {
	h1 {
		font-size: 32px;
	}
}
@media (max-width: 640px) {
	html {
		background-image: url(/images/index/mobile.jpg);
		background-size: 100vw;
		padding-top: 60vw;
		background-position: top left;
	}
	header {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
	}
	header.active {
		background: #fff;
	}
	.hamburger {
		display: block;
	}
	.wrapper {
		background: linear-gradient(transparent, rgba(255,255,255,0.9) 25%);
		margin: 0 auto;
		width: 100%;
		padding: 0 20px;
		min-height: initial;
		min-width: initial;
	}
	.main-section {
		padding: 0;
	}
	.top-nav {
		display: none;
		margin: 0;
	}
	header.active .top-nav {
		display: flex;
	}
	#locale-toggle {
		border: none;
	}
	#locale-toggle .short {
		display: none;
	}
	#locale-toggle .long {
		display: block;
	}
	.Registration .form-group:not(.submit-group) {
		margin-bottom: 10px;
	}
	.form-group label {
		padding-bottom: 5px;
	}
	#login-toggle, #locale-toggle {
		flex: 1;
		padding: 20px 0;
	}
	#login-form, #locale-list {
		top: 50px;
		right: 0;
		left: 0;
		box-shadow: 0px 5px 8px 0px rgba(210, 218, 220);
		width: 100%;
	}
	#login-form label {
		padding-left: 0;
	}
	h1 {
		margin: 4%;
		font-size: 28px;
	}
	footer {
		max-width: 400px;
		margin: auto;
	}
}

/*483030.1.508.3.fc81bce*/