* {
	box-sizing: border-box;
	color: #D4D4D4;
}

body {
	min-height: 97vh;	
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background: #3A3A3A;
}

#content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-grow: 1;
}

a {
	text-decoration: none;
}

#info_link {
	margin: 0 0 20px;
	width: 100%;
}

#page_info {
	padding: 20px 10px;
	background: #474747;
	border-bottom: 3px solid #78724E;
}

h1 {
	font-family: serif;
	font-size: 1.4em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 9px;
	text-align: center;
}

form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#gender_div {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

input[type="radio"] {
	width: 20px;
	display: none;
}

input[type="radio"] + label {
	padding: 10px 20px;
	text-align: center;
}

input[type="radio"]:checked + label {
	border: 1px solid #B2B2B2;
	background: rgba(76,76,76,0.7);
	color: #E6E6E6;
}

label {
	margin-top: 10px;
	font-size: 1.2em;
	width: 100%;
	color: #B4B4B4;
}

input, button {
	margin: 5px 0;
	padding: 10px 10px;
	font-family: Georgia;
	background: rgba(76,76,76,0.7);
	border: 1px solid #B2B2B2;
	color: #E6E6E6;	
}

input {
	width: 100%;
	border-radius: 7px;
	font-size: 1.1em;
}

input:focus, button:focus {
	border: 1px solid #E7B643;
}

button {
	width: 30%;
	font-family: 'Verdana';	
	font-size: 0.9em;
	border-radius: 3px;
	font-variant: small-caps;
	letter-spacing: 3px;
}

#messages {
	margin-top: 10px;
	text-align: center;
	font-style: italic;
}

#messages a, #messages a:active, #messages a:visited {
	text-decoration: none;
	color: #FEF7DE;
}

#messages a:hover {
	text-decoration: underline;
}

.message {
	font-family: Georgia;
	font-size: 1.05em;
	font-style: italic;
	color: #E6E6E6;		
}

#signup_message {
	font-size: 1.3em;
	font-weight: bold;
	background-color: #87050F;
	padding: 10px;
	border-radius: 2px;
}

@media only screen and (min-width: 769px) {
	#content {width: 60%;}
}