body {
	font-family: Helvetica, Arial, sans-serif;
	background-color: #f4f1ee;
	margin: 0;
	color: #222;
}

#content {
	max-width: 760px;
	margin: 20px auto;
	background-color: #fff;
	padding: 20px 30px 30px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#header {
	text-align: center;
	margin-bottom: 15px;
}
.header_img img {
	max-width: 100%;
	height: auto;
}
.header_title {
	font-size: 1.1em;
	color: #666;
	margin-top: 4px;
}

#show_form_div {
	display: grid;
	grid-template-columns: 180px 1fr;
	grid-row-gap: 8px;
	grid-column-gap: 12px;
	align-items: center;
}

.show_form_header {
	grid-column: 1 / 3;
	text-align: center;
	font-weight: bold;
	font-size: 1.4em;
	margin-bottom: 6px;
}
.show_form_intro {
	grid-column: 1 / 3;
	color: #555;
	margin-bottom: 10px;
}
.show_form_question {
	text-align: right;
	font-weight: bold;
}
.show_form_value input {
	width: 100%;
	max-width: 420px;
	padding: 6px 8px;
	font-size: 1em;
	border: 1px solid #bbb;
	border-radius: 4px;
	box-sizing: border-box;
}
.show_form_submit {
	grid-column: 1 / 3;
	text-align: center;
	padding-top: 10px;
}

.complete_text {
	grid-column: 1 / 3;
	line-height: 1.5;
}

/* real visitors never see this field; bots fill it in */
.honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
}

.btn {
	display: inline-block;
	padding: 8px 26px;
	background-color: #00aaff;
	color: #fff;
	border: 1px solid #0088cc;
	border-radius: 4px;
	font: inherit;
	font-size: 1em;
	text-decoration: none;
	cursor: pointer;
}
.btn:hover, .btn:focus {
	background-color: #0088cc;
}

.errorhead {
	font-size: 1.1em;
	color: #c00000;
	text-align: center;
	padding: 8px;
	margin-top: 10px;
	font-weight: bold;
	background-color: #fbe9e7;
	border-radius: 4px;
}
.good_errorhead {
	font-size: 1.1em;
	color: #1a7f1a;
	text-align: center;
	padding: 8px;
	margin-top: 10px;
	font-weight: bold;
}

@media (max-width: 600px) {
	#show_form_div {
		grid-template-columns: 1fr;
		grid-row-gap: 4px;
	}
	.show_form_header, .show_form_intro, .show_form_submit, .complete_text {
		grid-column: 1 / 2;
	}
	.show_form_question {
		text-align: left;
		margin-top: 8px;
	}
}

/* landing page (index.php) */
.landing {
	line-height: 1.5;
}
.landing_banner {
	text-align: center;
}
.landing h1 {
	text-align: center;
	font-size: 1.6em;
	margin: 10px 0 20px;
}
.landing .fee {
	color: #33b5e5;
	font-weight: bold;
}
.panel {
	border: 1px solid #d9534f;
	border-radius: 4px;
	margin: 20px 0;
}
.panel_heading {
	background-color: #d9534f;
	color: #fff;
	font-weight: bold;
	padding: 8px 12px;
}
.panel_body {
	padding: 4px 12px;
}
.small_links {
	text-align: center;
	font-size: 0.9em;
}
.landing_links {
	text-align: center;
	margin-top: 20px;
}
.landing_links h3 {
	font-size: 1.1em;
	margin: 14px 0 8px;
}
.btn_large {
	font-size: 1.2em;
	padding: 10px 34px;
}
