/**
 * X.X Common
 *
 * Its applied a 100% height, so we can use header with full screen size
 */
html,
body {
	height: 100%;
	font-family: 'Open Sans', sans-serif;
}

/**
 * X.X Header
 *
 * Full screen image background
 */
header {
	position: relative;
	width: 100%;
	min-height: 100%;
	padding: 70px 0;
	text-align: center;
	color: #fff;
	background: url('../img/header.jpg') no-repeat center center fixed;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
}
header h1 {
	padding: 30px 0;
	font-size: 65px;
	font-weight: bold;
	text-transform: uppercase;
}
header p {
	font: 20px 'Merriweather', serif;
	color: #ccc;
	color: rgba(255,255,255,.8);
}

/**
 * X.X Signup
 *
 */
form {
	width: 500px;
	padding: 15px 10px;
	margin: 0 auto;
	margin-top: 20px;
	color: #999;
	background-color: #fff;
	text-align: left;
}
form h2 {
	margin-bottom: 30px;
	font-size: 16px;
	text-align: center;
}
form label {
	text-transform: uppercase;
}
.error-border {
	border: 1px solid red;
}