html, body {
	height: 100%;
	margin:0;
	padding: 0;
	background-color: transparent;
	font-family: "Titillium Web", sans-serif;
	font-weight: 400;
	font-style: normal;
}

html {
	background-color: #122c53;
	background-image: url('../images/frontpage_background.jpg');
	background-repeat: no-repeat;
	background-attachment: fixed;
}

div#form_container {
	width: 460px;
	padding: 80px 75px 40px 75px;
	background-color: #004c99;
	box-shadow: 0 0 30px rgba(0,0,0,0.5);
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	position: relative;
	max-width:100%;
}

div#form_container div#caption {
	margin: 20px 0 50px 0;
	text-align: center;
	font-size: 2.5em;
	font-weight: bold;
	color:#fff;
}

div#form_container form {
	padding: 0 30px;
}

div#form_container form div.form-group {
	margin-bottom: 25px;
}

div#form_container input {
	height: 48px;
	border: 1px solid #122c53;
	border-radius: 12px;
	background-color: #dadada;
	color:#585656;
	font-size: 1.2em !important;
}

div#form_container input::placeholder {
	color: #585656 !important;
	opacity: 1;
}

div#form_container button {
	width: 70%;
	position: relative;
	left: 50%;
	transform: translate(-50%,0);
	color: #0b3979;
	border-radius: 12px;
	text-transform: uppercase;
	font-weight: bold;
}

div#form_container div.form_content {
	margin-bottom: 20px;
	margin-top: -35px;
	color: #fff;
	text-align: center;
}

div#form_container div.additional_form_content {
	margin-top: 35px;
	text-align: center;
}

div#form_container div.additional_form_content a {
	color: #fff;
}

div#footer {
	background-color: #004c99;
	color: #fff;
	position: fixed;
	width: 100%;
	bottom: 0;
}
div#footer div#footer_content {
	padding: 13px 0;
	text-align: center;
}
div#footer div#footer_content a {
	color: #fff;
}

div#public_content_container {
	max-width: 1000px;
	padding: 80px 75px 40px 75px;
	background-color: #004c99;
	box-shadow: 0 0 30px rgba(0,0,0,0.5);
	transform: translateX(-50%);
	left: 50%;
	top: 30px;
	position: relative;
	width: 80%;
	margin-bottom: 110px;
}

div#public_content_container div#caption {
	margin: 20px 0 50px 0;
	color: #fff;
	font-size: 2.5em;
}

div#public_content_container div#content {
	color: #fff;
}

@media(max-width: 768px) {
	div#public_content_container {
		width:90%;
		padding: 60px 35px 80px 35px;
	}

}