@charset "utf-8";
/* CSS Document */

* {
	padding: 0;
	margin: 0;
}

html, body {
	height: 100%;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
}

h1 {
	color: #0caffe;
	padding-bottom: 10px;
}

a {
	color: #000;
}

.error {
	background: #FCC;
	color: #900;
	border: 1px solid #900;
	padding: 8px 15px;
	margin: 10px 0;
}

#wrapper {
	width: 100%;
	height: 100%;
	display: table;
	
	background: #eeeeee;
	background: -moz-linear-gradient(-45deg,  #eeeeee 0%, #cccccc 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#eeeeee), color-stop(100%,#cccccc));
	background: -webkit-linear-gradient(-45deg,  #eeeeee 0%,#cccccc 100%);
	background: -o-linear-gradient(-45deg,  #eeeeee 0%,#cccccc 100%);
	background: -ms-linear-gradient(-45deg,  #eeeeee 0%,#cccccc 100%);
	background: linear-gradient(135deg,  #eeeeee 0%,#cccccc 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=1 );
}

#outer {
	display: table-cell;
	vertical-align: middle;
}

#inner {
	width: 600px;
	min-height: 20px;
	
	border: 1px solid #BBB;
	background: #FFF;
	padding: 20px 10px;
	box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#reCaptchaForm {
	margin-top: 10px;
}

div {
	margin: 0 auto;
}
