/* PAGE CONNEXION */

html{
	font-size: 62.5%;
}

*{
	box-sizing: border-box;
}

h1, h2, h3, h4, p, a, label, input{
	font-family: 'Comfortaa', cursive;
	color: white;
}

div.left-block{
	height: 100vh;
	width: 40%;
	display: block;
	background-position: center;
	background-size: cover;
	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
}

div.slogan{
	width: 70%;
}

div.slogan h1{
	font-size: 3.6em;
	line-height: 1.5em;
}

div.right-block{
	height: 100vh;
	width: 60%;
	display: block;
	float: right;
	display: flex;
	justify-content: center;
	align-items: center;
}

div.block-connexion{
	width: 80%;
	height: 80%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

div.block-connexion img{
	width: 35em;
	margin-bottom: 5em;
}

div.block-connexion p, label{
	font-size: 1.7em;
}

form.form-connexion{
	display: flex;
	flex-direction: column;
	margin-top: 5em;
}

form.form-connexion input{
	border: 2px solid white;
	width: 25em;
	height: 2em;
	margin: 1em 0;
	padding: 5px;
	color: white;
}

form.form-connexion button[type=submit]{
	background-color: white;
	color: #222222;
	border: 2px solid white;
	font-size: 1.7em;
	font-size: bold;
	width: 15em;
	height: 2em;
	margin: 1em 0;
	padding: 0;
	align-self: center;
}

form.form-connexion button[type=submit]:hover{
	border: 2px solid white;
	color: white;
	cursor: pointer;
}

div.mentions{
	align-self: flex-end;
	padding: 1em;
	right: 2em;
}

.alert-danger {
	color: #a94442;
	background-color: #f2dede;
	border-color: #ebccd1;
}

.alert {
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 4px;
}

.text-center {
	text-align: center;
}

/* ############################################## Particularités MPDD ############################################### */

body.site-mpdd div.left-block{
	background: url(/img/slide_mpdd.jpg) no-repeat;
        background-position: center;
        background-size: cover;
}

body.site-mpdd form.form-connexion input{
	border-radius: 0.5em;
}

body.site-mpdd form.form-connexion button[type=submit]{
	border-radius: 0.5em;
}

body.site-mpdd div.right-block{
	background-color: #ef9b06;
}

body.site-mpdd form.form-connexion input{
	background-color: #ef9b06;
}

body.site-mpdd form.form-connexion button[type=submit]:hover{
	background-color: #ef9b06;
}

/* ################################################################################################################## */