html, body
{
 	margin:0;
 	padding:0;
 }

footer
{
	margin-top: 0px;
	border-top: none;
	padding-top: 0;
	height: 60px;
	width: 100%;
	background-color: rgba(15, 23, 66, 0.6);
	padding: 10px;
	margin: 0px;

	color: white;

}

.logo:nth-child(1) /* On prend le deuxième bloc élément */
{
    align-self: flex-start; /* Seul ce bloc sera aligné à la fin */
}

body
{
	background-color: #444444;
}

header a
{
	padding: 10px 10px 10px 10px;
	color: white;
	text-decoration: none;
}

.connexion, header a:hover
{
	background-color: rgba(15, 23, 66, 0.9);
}

form
{
	font-family: "Trebuchet MS";
	width:50%;
	margin:auto;
	padding: 10px 0px 10px 0px;
	background-color:  white;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;

	min-height: 100vh;
}

label
{
	color: #444444;
	display: inline-block;
	width: 210px;
	text-align: left;

}

input[type=password], input[type=email]
{
	font-size: 14px;
	border: none;
	border-bottom: 1px solid #CCCCCC;
}

input[type=password]:focus, input[type=email]:focus
{
	outline: none;
	border-bottom: 1px solid black;
}

input[type=submit]
{
	background-color: rgb(15, 23, 66);
  	border: 1px solid rgb(15,23, 66);
  	color: white;
  	padding: 16px 32px;
  	text-decoration: none;
  	margin: 4px 2px;
  	cursor: pointer;
}

input[type=submit]:hover
{
	border: 1px solid white;
}

input[type=submit]:active
{
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.oubli {
	font-family: "Trebuchet MS";
	color: black;
	font-size: 9px;
}

form em
{
	font-size: 10px;
	display: inline-block;
	width: 300px;
	text-align: left;
}

.erreur
{
	color: red;
	font-size: 12px;
}

@media
	only screen 
    and (max-width: 1199px), (min-device-height: 100px)
    and (max-device-width: 1023px)  {
        form {font-size: 25px;}
        .oubli{font-size: 20px;}
        .erreur{font-size: 20px;}
        input {font-size: 25px;}
        input[type=password], input[type=email] {
        	font-size: 32px;
        }	
        label{width: 400px;}
    }
