/*GENERAL RULES*/

html, body {
	color: black;
	font-size: 100%;
	font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
	width: 100%;
	min-width: 100%;
	height: 100%;
	min-height: 100%;
	position: relative;
	background-color: black;
}

::-webkit-selection {
	color: white;
	background-color: #09caff;
}

::-moz-selection {
	color: white;
	background-color: #09caff;
}

::-o-selection {
	color: white;
	background-color: #09caff;
}lo

::selection {
	color: white;
	background-color: #09caff;
}

/*STRUCTURE & BOX MODELS*/

#background {
	width: 100%;
	min-width: 100%;
	height: 120%;
	min-height: 120%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background: url(https://voodootix.s3.eu-west-3.amazonaws.com/vdr-background_login_page.jpeg) no-repeat center 0;
	background-size: cover;
	opacity: 0.75;
	/*animation: fx-scroll-background 5s ease-in-out infinite alternate;*/
	position: fixed;
}

#login-wrapper {
	width: 100%;
	min-width: 100%;
	height: 100%;
	min-height: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	float: left;
	display: flex;
	align-items: center;
}

#login-box {
	width: 85%;
	max-width: 500px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	background-color: white;
	overflow: hidden;
	-webkit-box-shadow: 0 0 50px 0 rgba(0,0,0,0.5);
	box-shadow: 0 0 50px 0 rgba(0,0,0,0.5);
}

#splash {
	min-height: 400px;
	background: #4dc29f url(../img/splash.jpg) no-repeat center bottom;
	background-size: 100% auto;
}

/*ANIMATIONS & EFFECTS*/
.login-page {
	transform: scale(1.25);
	overflow: hidden;
	opacity: 0;
}

.load {
	-webkit-transition: -webkit-transform 400ms ease, opacity 350ms linear;
	transition: transform 400ms ease, opacity 350ms linear;
	transform: scale(1);
	opacity: 1;
}
		
.loaded {
	overflow: auto;
}

@-webkit-keyframes fx-scroll-background {
	from {
		-webkit-transform: translateY(0px);
		transform: translateY(0px); }
	to {
		-webkit-transform: translateY(-15%);
		transform: translateY(-15%);
	}
}

@keyframes fx-scroll-background {
	from {
		-webkit-transform: translateY(0px);
		transform: translateY(0px); }
	to {
		-webkit-transform: translateY(-15%);
		transform: translateY(-15%);
	}
}
