html {
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	}

body {
	background:url('background.jpg') no-repeat center fixed;
	font-family: 'Montserrat', Arial, sans-serif;
	margin:0;
	padding:0;
	}
	
body a {
	color:inherit;
	}
	
body a:hover {
	text-decoration:none;
	}

.logo {
	width:300px;
	}

.form_demande {
	width:650px;
	max-height:calc(100% - 150px);
	background-color:#FFFFFF;
	text-align:center;
	padding:50px;
	margin:auto;
	transform:translate(-50%,-50%);
	position:absolute;
	top:50%;
	left:50%;
	overflow:auto;
	}

form label {
	display:block;	
	text-align:left;
	margin-top:15px;
	font-size:1em;
	}

form input[type="email"],
form select {
	width:100%;
	box-sizing:border-box;
	padding:10px;
	border-radius:10px;
	border:1px solid #999999;
	background-color:#F5F5F5;
	}

form input[type="email"]:focus,
form select:focus {
	outline:none;
	}

form input[type="submit"] {
	box-sizing:border-box;
	padding:10px 20px 10px calc(30px + 1.5em);
	cursor:pointer;
	border-radius:10px;
	border:1px solid #999999;
	background-color:#F5F5F5;
	background-image:url('clap.png');
	background-size:1.5em;
	background-repeat:no-repeat;
	background-position:20px center;
	margin-top:20px;
	}

form input[type="submit"]:hover {
	background-color:#FFFFFF;
	}

form input[type="submit"].send {
	background-position:center center;
	color:transparent;
	transition:background-position 0.5s,color 0.5s;
	}
	
#nom_film {
	display:none;
	}
	
.success {
	display:none;
	}
	
.mention_legale {
	text-align:left;
	font-size:0.8em;
	}
	
@media screen and (max-width: 800px) {
	.form_demande {
		width:calc(100% - 150px);
		height:calc(100% - 150px);
		}
	}
	
@media screen and (max-width: 500px) {
	.form_demande {
		width:calc(100% - 90px);
		padding:50px 20px;
		}
	}
	
@media screen and (max-width: 400px) {
	.form_demande  .logo {
		width:100%;
		}
	}