@charset "utf-8";
/* CSS Document */

body {margin:0; padding:0; background:url(images/fond-form.jpg) no-repeat center fixed; -webkit-background-size:cover; -moz-background-size:cover; -o-background-size:cover;}

.box{display: flex;
     justify-content: center;
	 align-items: center;
	 height:100vh;
	 text-align:center;
}

#F {width:250px; height:auto;
    padding: 20px;
	background-color:rgba(0, 0, 0, 0.6);
	-webkit-border-radius:20px 20px 20px 20px; -moz-border-radius:20px 20px 20px 20px;   -o-border-radius:20px 20px 20px 20px;
	}

#F input{display:block;
         color:#FFF; 
         margin:auto; 
		 padding:5px; 
		 margin-bottom:20px;
		 -webkit-border-radius:10px; -moz-border-radius:10px; -o-border-radius:10px;
		 background:transparent;
		}

#F input:focus {
	-webkit-border-radius:10px; -moz-border-radius:10px; -o-border-radius:10px;
	color:#FFF;
	background:#222;
	outline:none;	
}

#F input:hover {
	background:#222;
}

#F input[type="submit"]{
	cursor:pointer;
}
