@font-face {
	font-display: swap;
	font-family: Marianne;
	font-style: normal;
	font-weight: 400;
	src: url(fonts/Marianne-Regular.woff2) format("woff2")
}

@font-face {
	font-display: swap;
	font-family: Marianne;
	font-style: italic;
	font-weight: 400;
	src: url(fonts/Marianne-Regular_Italic.woff2) format("woff2")
}

@font-face {
	font-display: swap;
	font-family: Marianne;
	font-style: normal;
	font-weight: 500;
	src: url(fonts/Marianne-Medium.woff2) format("woff2")
}

@font-face {
	font-display: swap;
	font-family: Marianne;
	font-style: normal;
	font-weight: 700;
	src: url(fonts/Marianne-Bold.woff2) format("woff2")
}


body {
	margin: 0;
	padding: 0;
	font-family: Marianne, sans-serif;
	font-size: 14px;
}

#login {
	background-image: url(img/background/paf_arc_triomphe_horizontal.avif);
	width: 100vw;
	height: 100vh;
	background-position: center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

label {
	color: #fff;
	font-size: 2vw;
	margin: 0.3vw;
}

input {
	font-size: 2vw;
	padding: 0.5vw 1vw;
	border-radius: 1vw;
	background-color: #fffc;
	text-align: center;
	margin: 0.3vw;
}

#titre_accueil {
	color: #fff;
	text-align: center;
	font-variant: small-caps;
	font-size: 3vw;
	margin-bottom: 2em;
}

#accessibilite {
	position: fixed;
	bottom: 0;
	padding: 0.5em;
	background-color: #fffe;
	width: 100%;
	border-top: 1px solid #888;
	font-size: 12px;
}

#accessibilite a {
	color: #555;
	text-decoration: none;
	margin: 0 1em;
}

#accessibilite a:hover {
	text-decoration: underline;
}

/* Page accessibilite.php
--------------------------*/

#infos_access {
	width: 100%;
	max-width: 900px;
	margin: 2em auto;
	padding: 0 1em;
	box-sizing: border-box;
}

@media screen and (orientation: landscape) {
	#login {
		background-image: url(img/background/paf_arc_triomphe_horizontal.avif);
	}
}

@media screen and (orientation: portrait) {
	#login {
		background-image: url(img/background/paf_arc_triomphe_vertical.avif);
	}

	label {
		font-size: 2vh;
		margin: 0.3vh;
	}

	input {
		font-size: 2vh;
		padding: 0.5vh 1vh;
		border-radius: 1vh;
		margin: 0.3vh;
	}

	#titre_accueil {
		font-size: 3vh;
	}

}