/* @override 
	https://leurmondeanous.image.ac/assets/css/diapodownload.login.css */

/* CSS addtionel pour la gestion de la page login */

:root {
	--form-width:300px;
}
#identification {
	display: flex;
	width: 100vw;
	height: 100vh;
	
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
	
}
#identification p {
	display: block;
}
#identification p.actions {
	display: flex;
	justify-content: flex-end;
}

#identification label {
	width: 100%;
}
#identification input[type="text"],
#identification input[type="password"] {
	width: var(--form-width);
	
	padding: 10px 15px 5px;
}
#identification input[type="submit"] {
/*	padding: 10px 15px 5px;*/
}
#identification h1 {
	margin-bottom: 50px;
	font-size: 30px;
	line-height: 30px;
}
#connexion,
#identification h1 {
	width: var(--form-width);
}

a#logout {
	display: block;
	position: absolute;
	top: 0; right: 0;
}
a#logout small {
	display: block;
}

ul#erreur {
	list-style: none;
	padding: 30px 0 0;
	text-align: center;
	margin-bottom: 30px;
}
ul#erreur::before {
	content: "!";
	font-weight: bold;
	display: block;
	text-align: center;
	background-color: black;
	color: white;
	width: 30px;
	height: 25px;
	line-height: 30px;
	margin: auto auto 10px;
	clip-path: polygon(50% 0, 0 100%, 100% 100%);
}