body {
  	margin: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

* {
	box-sizing: border-box;
	font-family: "Exo 2", sans-serif;
	font-optical-sizing: auto;
}

main {
	display: flex;
	flex-direction: column;
}

div.mainframe {
	display: flex;
	flex-direction: column;
	gap: .5rem;
	position: absolute;
	justify-content: space-around;
	height: 100%;
	width: 100%;
	background-color: #f0f2f5;
	align-items: center;
}

div.optionframe {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

div.bar {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
}

.heading {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
}
.formlogo {
	width: 3rem;
}

form {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	padding: 1.25rem;
	align-items: center;
	border-radius: 1rem;
	box-shadow: 0px 3px 6px #ddd;
	min-width: 25rem;
	background-color: white;
}

form a {
	text-decoration: none;
	color: #119966;
	font-weight: 550;
	padding: .5rem 1rem;
}

form input[type=submit] {
	background-color: #119966;
	color: white;
	border: none;
}

input {
	padding: .5rem 1rem;
	width: 100%;
	border: 1px solid #aaa;
	border-radius: .5rem;
}

.formoptions {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}