.error {
	color: red;
}

header {
	background: #e46633;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	padding-left: 15px;
	padding-right: 15px;
	align-items: center;
}

header div.headerOuter {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items:center;
}

header div.headerLeft {
	flex-grow: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
}

.headerLeft a {
	text-decoration: none;
	color: black;
}

header div.headerRight {
	flex-grow: 1;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	justify-content: end;
}

body {
	display: flex;
	flex-direction: column;
	font-family: sans-serif;
	margin: 0px;
}

body > main {
	max-width: 1000px;
	margin: 1rem auto;
	flex: 1;
	text-align: center;
}

main > form {
	margin: 1rem auto;
	padding: 1rem;
	border: solid 1px;
	border-radius: 0.5rem;
}

main > p {
	text-align: start;
}

form {
	width: 500px;
}

form h1 {
	text-align: center;
	padding: 3px;
	font-weight: 500;
}

form > div {
	margin-bottom: .75rem;
}

form > section {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	margin-top: 2rem;
}

label {
	display: inline-block;
	margin-bottom: 5px;
	vertical-align: top;
	width: 100%;
	text-align: start;
}

input {
	display: inline-block;
	padding: .5rem .75rem;
	width: 100%;
	box-sizing: border-box;
}

button {
	font-size: 1.5em;
}

ol {
	text-align: start;
}

.horizontalContainer {
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.optionPanel {
	width: 500px;
	flex-shrink: 1;
	margin: 1rem;
	padding: 1rem;
	border: solid 1px;
	border-radius: 1rem;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.optionPanelBottom {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.button {
	font-size: 1em;
	background: #994422;
	color: white;
	border: solid 1px;
	border-radius: 0.5rem;
	padding: 0.5rem;
	text-decoration: none;
}

.loginAlt {
	text-align: end;
}

.price {
	font-size: 1.5em;
}

.optionPanel ul {
	text-align: start;
}
