@charset: "UTF-8";

*{
	box-sizing: border-box;
}

html{
    position: relative; /*sticky footer*/
    min-height: 100%; /*sticky footer*/
    font-size: 17px;
}

body{
    font-family: 'Montserrat', sans-serif;
    min-height: 100%;
}

.f-nu{
	font-family: 'Nunito', sans-serif;
}

.f-vi{
	font-family: 'Great Vibes', cursive;
}

.c-orange{
	color: #f58542;
}

.bg-vert{
	background-color: #84cec2;
}

.bg-bleu{
	background-color: #45c1c3;
}

.bg-w{
	background-color: white;
}

.spacerB{
	margin-bottom: 2rem;
}
.arrondi{
	border-radius: 5px;
	overflow: hidden;
}

.container-fluid{
	height: 100vh;
}

.row{
	height: 100%;
}

/*form*/
.loginBck{
	background-size: cover; 
}

#loginform{
	position: relative;
	border-radius: 2rem;
	padding: 5rem;
	padding-top: 0;	
	background-color: white;
	box-shadow: 0 0 4rem 0 rgba(0, 0, 0, 0.25);
}

#loginform h1{
	position: absolute;
	left: 0;
	top: 0;
	padding: 1rem;
	font-size: 3rem;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	color: white;
	text-align: center;
	width: 100%;
}

#loginform .message{
	margin-top: 6rem;
	height: 5rem;
	line-height: 5rem;
	text-align: center;
}

#loginform button{
	display: block;
	border: 1px solid #84cec2;
	color: white;
	width: 50%;
	padding: 15px;
	border-radius: 5px;
}
#loginform button:hover{
	border: 1px solid #84cec2;
	background-color: white;
	color: #84cec2;
}

#loginform input[type="text"], #loginform input[type="password"]{
	border: 1px solid #84cec2;
	background-color: white;
	width: 100%;
	padding: 15px;
	border-radius: 5px;
}

div.deco{
	position: relative;
	padding: 0 !important;
	height: 100vh;
	overflow: hidden;
}

div.deco .voile, div.loginBck .voile{
	position: absolute;
	background-color: rgba(69, 193, 195, 0.75);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}
div.loginBck form{
	position: relative;
	z-index: 200;
}

div.deco .logo{
	position: absolute;
	width: 25%;
	top: 5%;
	left: 37.5%;
	z-index: 200;	
	padding: 1rem;
}
div.deco .logo img{
	width: 100%;
}

img.deco{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: auto;
	z-index: -1;
}


/*media queries*/
/*sd*/
@media (max-width: 767.98px) { 
	#loginform{
		padding-left: 1rem;
		padding-right: 1rem;
		padding-bottom: 2rem;
	}

	#loginform input[type="submit"]{
		width: 100%;
	}	
}
/*xl*/
@media (min-width: 1200px) {
	.loginBck{
		background-size: 0;
	}
}