/*GENERAL RULES*/

html, body {
	color: #787878;
	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: #a4a4a4;
}

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

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

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

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

/*STRUCTURE & BOX MODELS*/

	/* Enlever le chevron Bootstrap */
	.language-btn.dropdown-toggle::after {
		display: none !important;
	}

	/* Bouton transparent */
	.language-btn {
		background-color: transparent !important;
		border: none !important;
		box-shadow: none !important;
		color: white !important;
		font-size: 1.5rem;
		padding-right: 0.3rem; /* optionnel : ajustement visuel */
	}

	.language-btn:hover,
	.language-btn:focus {
		background-color: rgba(255, 255, 255, 0.15) !important;
	}

#background {
	width: 100%;
	min-width: 100%;
	height: 120%;
	min-height: 120%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	background: url(../img/background_login_page.jpg) no-repeat center 0;
	background-size: cover;
	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: 800px;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	background-color: #323232;
	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 {
	background: url(https://redtaag-static.s3.eu-west-3.amazonaws.com/redtaag_splash.png) no-repeat center center;
	background-size: cover;
}

/*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;
}

.toggle-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 56px;
    height: 26px;
    background: #ccc;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    padding: 3px;
}
.toggle-circle {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    left: 3px;
    transition: all 0.3s;
}
.toggle-btn.active {
    background: #28a745;
}
.toggle-btn.active .toggle-circle {
    left: 33px;
}
.toggle-icon {
    position: absolute;
    right: 5px;
    color: white;
    display: none;
}
.toggle-btn.active .toggle-icon {
    display: block;
}

/*
@-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%);
	}
}
*/