/* Page de connexion */
/* 2020 */

body {
	background: #2B2B2B;
	font-family: Lato;
	margin: 0;
	padding: 0;
}

.ctn_noscript {
	background: #990000;
	bottom: 0;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
}

.ctt_noscript {
	bottom: 0;
	height: 150px;
	left: 0;
	margin: auto;
	max-width: 300px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 95%;
}

.ctn_noscript img {
	height: 60px;
	margin:20px 0; 
}

.ctn_noscript p {
	color: #EEEEEE;
	font-size: 14px;
}

@keyframes
gradient_anim {
	0% {
		filter: hue-rotate(0deg);
	}

	25% {
		filter: hue-rotate(180deg);
	}

	50% {
		filter: hue-rotate(0deg);
	}

	75% {
		filter: hue-rotate(-180deg);
	}

	100% {
		filter: hue-rotate(0deg);
	}
}

.gradient_anim {
	animation-duration: 350s;
	animation-iteration-count: infinite;
	animation-name: gradient_anim;
	animation-timing-function: linear;
	background: -moz-linear-gradient(30deg, #ff0000 0%, #9E005D 100%);
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #ff0000), color-stop(100%, #9E005D));
	background: -webkit-linear-gradient(30deg, #ff0000 0%, #9E005D 100%);
	background: -o-linear-gradient(30deg, #ff0000 0%, #9E005D 100%);
	background: -ms-linear-gradient(30deg, #ff0000 0%, #9E005D 100%);
	background: linear-gradient(60deg, #ff0000 0%, #9E005D 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#9E005D',GradientType=1 );
	filter: blur(50px);
	height: 100%;
	left: 0;
	opacity: .25;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
}

.frame_form {
	bottom: 0;
	height: 570px;
	left: 0;
	margin: auto;
	max-width: 400px;
	opacity: 1;
	position: absolute;
	right: 0;
	top: 0;
	width: 95%;
	transition: ease .5s;
}

.frame_form.up {
	opacity: 0;
	transform: translateY(-50px);
}

.logo {
	display: block;
	height: 80px;
	left: 0;
	margin: 20px auto;
	right: 0;
}

label {
	color: #999999;
	display: block;
	font-size: 12px;
	font-weight: bold;
	margin: 10px 0;
	text-transform: uppercase;
}

input[type="text"], input[type="mail"], input[type="password"] {
	background: transparent;
	border-radius: 3px;
	border: 1px solid #999;
	color: #FFFFFF;
	font-size: 20px;
	outline: none;
	margin: 5px 0 25px;
	padding: 5px;
	transition: all cubic-bezier(.3,.1,.33,1) .5s;
	width: calc(100% - 12px);
}

button {
	background: #EEE;
	border-radius: 3px;
	border: none;
	display: block;
	font-size: 16px;
	margin: 35px auto 20px;
	padding: 7px;
	width: 50%;
}

.error {
	background: #990000;
	border-radius: 3px;
	color: #EEE;
	font-size: 16px;
	opacity: 0;
	padding: 8px 0;
	text-align: center;
	transform: translateY(-20px);
	transition: ease .5s;
}

.error.active {
	opacity: 1;
	transform: translateY(0px) 
}

.forget_password {
	color: #999;
	cursor: pointer;
	font-size: 12px;
	text-align: center;
}

.ctt_password {
	height: 100px;
	opacity: 1;
	overflow: hidden;
	transition: ease .5s;
}

.ctt_password.hide {
	height: 0;
	opacity: 0;
}