html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	background: #dfb;
	background: #fff;
	color: #000;
}

#container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

#container > header {
	padding: 30px;
}

main {
	display: flex;
	flex-direction: row;
	padding: 0 30px 30px;
}

main > section {
	flex: 0 1 600px;
	max-width: 600px;
	padding: 30px 60px;
	border: 1px solid #000;
}

main > aside {
	flex: 1 1 auto;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 450px;
	max-height: calc(100vh - 100px);
	margin-left: 60px;
}

main > aside > img {
	width: 100%;
	height: auto;
}

img {
	display: block;
	border: none;
}

h1 {
	margin: 0 0 30px;
	padding: 0;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 1.1em;
}

p {
	margin: 0 0 1em;
}

section > p:last-child {
	margin: 2em 0 0;
}

label {
	font-size: 1.2rem;
}

input[type=text], textarea, button, select {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 1rem;
	box-sizing: border-box;
}

input[type=text], textarea, label, select {
	display: block;
	width: 100%;
	margin: 0;
}

input[type=text], textarea, select {
	margin: 5px 0 20px;
	padding: 5px 10px;
	font-weight: normal;
	background: #fff;
	border: 1px solid #666;
	border-radius: 0;
}

textarea {
	min-height: 5rem;
	resize: vertical;
}

select {
	cursor: pointer;
}

button {
	display: inline-block;
	padding: 10px 20px;
	background: #3dafc5;
	border: 1px solid #000;
	color: #fff;
	border-radius: 0;
	cursor: pointer;
	line-height: 1rem;
	text-transform: uppercase;
	font-weight: bold;
}

footer {
	text-align: center;
}

#eec-success, #eec-error {
	display: none;
	margin: 0 auto;
	font-weight: bold;
}

#eec-success {
	text-align: center;
	margin-bottom: 30px;
	color: #3dafc5;
}

#eec-error, .error {
	color: #d00;
}

@media (max-width: 1000px) {
	main > section {
		padding: 20px 30px;
	}
}

@media (max-width: 700px) {
	#container > header {
		display: none;
	}
	main {
		flex-direction: column-reverse;
		padding: 0 20px 20px;
	}
	main > aside {
		display: block;
		width: 100%;
		max-width: 300px;
		margin: 30px auto;
	}
}