*{
	padding: 0;
	margin: 0;
}
div#conteneur
{
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	background: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),url(../image/fond15.jpg);
	background-size: cover;
	background-position: center;
	background-origin: content-box;
}
div.form
{
	width: 40%;
	height: 75%;
	display: flex;
	flex-direction: column;
	margin: auto;
}
div.form form
{
	width: 80%;
	height: 70%;
	display: flex;
	flex-direction: column;
	border-radius: 5px;
	border: 1px solid #008b8a;
	margin: auto;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, .4);
	background-color: rgba(255, 255, 255, .4);
}
div.form input
{
	width: 90%;
	border: 1px solid rgba(0, 139, 138, .8);
	margin: 20px;
	border-radius: 5px;
	height: 35px;
	transition: .1s ease-out;
	outline: none;
}
div.form input:focus
{
	border-bottom: 2px solid #008b8a;
}
div.form input.submit
{
	width: 50%;
	font-size: 18px;
	font-weight: bold;
	margin: 10px;
	border-radius: 5px;
	border: 1px solid #008b8a;
	height: 40px;
	background-color: #008b8a;
	color: #ffffff;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, .2);
}
div.form label
{
	font-size: 18px;
	padding: 10px;
	padding-right: 50px;
	padding-left: 50px;
	background-color: #008b8a;
	color: #ffffff;
	border-radius: 5px;
}
div.form form p
{
	font-size: 18px;
	color: #008b8a;
	margin: 10px;
}
div.form form a
{
	font-size: 18px;
	color: #008b8a;
	text-decoration: none;
	padding: 10px;
	border-radius: 5px;
}
div.form form a:hover
{
	color: #ffffff;
	background-color: #008b8a;
	
}
@media screen and (max-width: 960px)
{
	*{
		padding: 0;
		margin: 0;
	}
	div#conteneur
	{
		width: 100%;
		height: 100vh;
		display: flex;
		flex-direction: column;
		background: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),url(../image/fond15.jpg);
		background-size: cover;
		background-position: center;
		background-origin: content-box;
	}
	div.form
	{
		width: 98%;
		height: 75%;
		display: flex;
		flex-direction: column;
		margin: auto;
		background-color: rgba(255, 255, 255, .4);
	}
	div.form form
	{
		width: 90%;
		height: 70%;
		display: flex;
		flex-direction: column;
		border-radius: 5px;
		border: 1px solid #008b8a;
		margin: auto;
		align-items: center;
		justify-content: center;
		box-shadow: 0px 0px 4px rgba(0, 0, 0, .4);
	}
	div.form input
	{
		width: 90%;
		border: 1px solid rgba(0, 0, 0, .2);
		margin: 20px;
		border-radius: 5px;
		height: 35px;
		transition: .1s ease-out;
		outline: none;
	}
	div.form input:focus
	{
		border-bottom: 2px solid #008b8a;
	}
	div.form input.submit
	{
		width: 50%;
		font-size: 18px;
		font-weight: bold;
		margin: 10px;
		border-radius: 5px;
		border: 1px solid #008b8a;
		height: 40px;
		background-color: #008b8a;
		color: #ffffff;
		box-shadow: 0px 0px 6px rgba(0, 0, 0, .6);
	}
	div.form label
	{
		font-size: 18px;
		background-color: #008b8a;
	}
	div.form form p
	{
		font-size: 18px;
		color: #008b8a;
		margin: 10px;
	}
	div.form form a
	{
		font-size: 18px;
		color: #008b8a;
		text-decoration: none;
		padding: 10px;
		border-radius: 5px;
	}
	div.form form a:hover
	{
		color: #ffffff;
		background-color: #008b8a;
		
	}
}