body, a, a:hover, a:active, a:visited {
	font-family: 'Roboto', sans-serif;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
	text-decoration: none;
	color: #B6EAF9;

	background-color: #4A96AD;
}

.popup {
	position: fixed;
	top: 40px;
	left: 50%;
	right: 50%;
	z-index: 1000;

	width: 30%;
	height: auto;
	margin-left: -15%;

	padding: 20px;
	background-color: #205160;
	border: 3px solid #E06949;
	border-radius: 5px;

	box-shadow: 0 0 50px rgba(0, 0, 0, 1.0)
}

.error {
	color: #E06949;
}

.mainWrapper {
	height: 100%;
	width: 50%;
	padding: 30px;

	z-index: 0;
	cursor: pointer;
	position: absolute;

	box-shadow: 0;

	transition: box-shadow 0.2s;
}

.mainWrapper:hover {

	position: absolute;
}

.GBD {
	left: 0px;

  	background-color: #4A96AD;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.0);
}

.Web {
	right: 0px;

  	background-color: #84DEF9;
	box-shadow: 0 0 50px rgba(0, 0, 0, 0.00);
}

.Title {
	font-size: 42pt;
}

.contentWrapper {
	height: 100%;
	overflow-y: scroll;
}

.content {
	display: none;
}

h2 {
	color: #205160;
}

.formItem {
	margin: 10px 0;
}

input, .input {
	color: #205160;
	background-color: #84DEF9;
	border: 1px solid #777;
	border-radius: 5px;
	padding: 10px;
	width: 302px;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);

	transition: box-shadow 0.4s;
}

input:focus, .input:focus {
	outline: none;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.wrongInput {
	border: 1px solid #E06949;

	box-shadow: 0 0 2px rgba(224, 105, 73, 0.4);
}

.wrongInput:focus {
	box-shadow: 0 0 2px rgba(224, 105, 73, 0.7);
}

@media screen and (max-width: 768px) {
	.mainWrapper {
		float: none;
		width: 100%;
		height: 50%;
	}

	.Web {
		bottom: 0px;
	}
}