

html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: #eaf1f5;
	text-align: center;
}

#container {
	background: #a6c9e7;
	display: inline-block;
	padding: 20px;
	border: 2px solid #405f75;
	border-radius: 3px;
	width: 550px;
	text-align: right;
	margin-top: 150px;
	box-shadow: 1px 1px 12px -1px #030303;
}

header {
	background: #4a75a2;
	padding: 10px;
	text-align: ;
	margin-bottom: 15px;
	font-size: 1.1em;
	box-shadow: 0px 0px 5px 1px #416e8a;
	border: 1px solid #164e78;
	border-radius: 2px;
	color: #fff;
	text-shadow: 1px 3px 2px #000;
}

#fdc_message {
	display: none;
	margin-bottom: 12px;
	text-align: center;
	padding: 3px;
	background-color: #e4a5a5; /* rouge */
	border: 1px solid #dd9898;
	border-top: 1px solid #722;
	box-shadow: 0 0 1px 0 rgb(84, 32, 32) inset, 0 1px 3px 0 rgba(255, 255, 255, 0.5);
}

label {
	display: inline-block;
	margin-right: 8px;
	font-weight: bold;
}

input {
	width: 400px;
	margin-bottom: 5px;
	padding: 5px;
	font-size: 1em;
}

#submit {
	padding: 6px 0;
	font-size: 1em;
	font-weight: bold;
	margin-top: 5px;
	background: #ffffff4d;
	border-radius: 3px;
	border: 1px solid #47709e;
	color: #000;
	width: 140px;
	cursor: pointer;
}

#submit:hover {
	background: #e0edf9;
	border: 1px solid #6a92bf;
}

#submit.disabled:hover {
	background: #ffffff4d;
	cursor: default;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}