body{
	background-color: whitesmoke;
	font-family: Tahoma, sans-serif;
	width: 100%;
	height: 100%;
	margin: 0 0 0 0;
	min-height: 100vh;
}

nav{
	border-bottom: 2px solid blue;
}

ul.nav-list{
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

ul.nav-list li.nav-el{
	float: left;
}

li.nav-el a{
	display: block;
	color: black;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	border-left: 1px lightgray solid;
	border-right: 1px solid lightgray;
}
li.nav-el a:hover {
  background-color: deepskyblue;
  color: white;
  transition: 0.5s;
  cursor: pointer;
}

ul.nav-list li.nav-right{
	float: right;
}

div.conn-sel{
	margin-top: 2px;
	float: right;
	position: float;
	width: 12%;
	height: 25%;
	background-color: deepskyblue;
	border-bottom-left-radius: 5%;
	border-bottom-right-radius: 5%;
}

ul.conn-sel-list{
	list-style-type: none;
	padding: 0;
	text-align: center;
}

ul.conn-sel-list li a:hover{
  	color: white;
  	transition: 0.5s;
  	cursor: pointer;
}

span.separator-h{
	display: block;
	border-bottom: 1px solid black;
}

.page-content{
	margin-left: 1%;
	margin-right: 1%;
}

footer{
	height: 150px;
	text-align: center;
	margin-right: 0px;
	margin-left: 0px;
}

div.connexion{
	position: absolute;
	display: none;
	text-align: center;
	top: 40%;
	left: 15%;
	width: 35%;
	height: 35%;
	transform: translate(50%, -50%);
	background-color: deepskyblue;
	border-radius: 8px;
}

div.inscription{
	position: absolute;
	display: none;
	text-align: center;
	top: 40%;
	left: 15%;
	width: 35%;
	height: 45%;
	transform: translate(50%, -50%);
	background-color: deepskyblue;
	border-radius: 8px;
}

div.error{
	position: absolute;
	text-align: center;
	top: 10%;
	width: 70%;
	height: 5%;
	transform: translate(25%, 50%);
	background-color: rgba(255, 200, 200, 1);
	color: darkred;
	border-radius: 8px;
	border: 2px solid red;
}

form input{
	width: 75%;
	font-size: 1.25em;
	height: 1.5em;
	margin-top: 10%;
	border-radius: 8px;
	box-sizing: border-box;
	border: none;
}

form input:focus{
	border: 1px solid black;
}

.footer{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	border-top: 2px solid blue;
}