
html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
	background: #000 url('../img/bg.jpg') center center no-repeat;
	background-size: cover;
}

#page_title {
	font-family: "brandon-grotesque", Helvetica, Arial, sans-serif;
	font-size: 30px;
	font-weight: 300;
	line-height: 30px;
	display: block;
	height: 30px;
	position: absolute;
	font-style: normal;
	top: 50%;
	left: 50%;
	color: #C7CED7;
	text-transform: uppercase;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
	margin: -321px 0 0 -400px;
}
	#page_title > strong {
		font-weight: 700;
		margin-right: 19px;
	}

#secret {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 800px;
	margin: -274px -400px;
	box-shadow: 0 0 100px #000;
}

form {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 570px;
	margin: 199px 0 0 -261px;
}

	#solution {
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-size: 21px;
		padding: 10px;
		background: #202227;
		border: none;
		width: 300px;
		color: #4B545A;
		text-align: center;
		box-shadow: inset 0 0 2px #232629, inset 2px 2px 15px #101113;
		text-shadow: 1px 1px rgba(0, 0, 0, 0.31);
		transition: all 0.8s;
		outline: none;
	}

	#solution::-webkit-input-placeholder {
	   color: #33383C;
	}

	#solution:-moz-placeholder { /* Firefox 18- */
	   color: #33383C;
	}

	#solution::-moz-placeholder {  /* Firefox 19+ */
	   color: #33383C;  
	}

	#solution:-ms-input-placeholder {  
	   color: #33383C;
	}

	#solution:hover {
		box-shadow: inset 0 0 2px #383D41, inset 2px 2px 15px #101113;
		transition: all 0s;
		outline: none;
	}
	#solution:focus {
		box-shadow: inset 0 0 2px #383D41, inset 2px 2px 35px #101113;
		transition: all 0.2s;
		outline: none;
	}

	#submit {
		font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-size: 20px;
		padding: 10px 0;
		background: #373D42;
		border: none;
		color: #747F87;
		text-align: center;
		box-shadow: inset 0 0 2px #232629, inset 0 0 55px #61666F;
		text-shadow: 1px 1px rgba(0, 0, 0, 0.31);
		margin: 0 0 0 10px;
		width: 183px;
		font-weight: 600;
		text-transform: uppercase;
		transition: all 0.6s;
		outline: none;
	}
		#submit:hover {
			color: #8B9CA7;
			background: #454C52;
			transition: all 0.2s;
			outline: none;
		}
		#submit:active {
			color: #FFF;
			box-shadow: inset 0 0 2px #232629, inset 0 0 55px #FFF;
			outline: none;
		}

@media all and (max-width: 1500px) {
	body {
		background: #000 url('../img/bg-small.jpg') center center no-repeat;
		background-size: 1500px auto;
	}
}