body{
	display:flex;
	justify-content: center;
	align-content: center;
	padding-left:8%;
	padding-right:8%;
	flex-direction: column;
	margin:0px;
	min-height: 100vh;
	background-color: #201e19;
	color:#e9d3ad;
}

a{
	color:white;
}

.bordered{
	border:1px solid #e9d3ad;
	box-sizing: border-box;
}

.side-border{
	border-right:1px solid #e9d3ad;
	border-left:1px solid #e9d3ad;
	box-sizing: border-box;
}

.centered{
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}


.topbar{
	display: flex;
	width:100%;
	flex-wrap:wrap;
}

.logo{
	aspect-ratio: 1/1;
	height: 8em;
  	margin: 0;
  	padding: 0;
}

.logo img {
	height: 100%;
	aspect-ratio: 1 / 1;
}

.title{
	height: 8em;
	display:flex;
	flex:auto;
	justify-content: left;
}

.title h1{
	margin-left:5%;
	font-size: clamp(1.2rem, 1.5vw + 0.5rem, 2.5rem);
}

.login{
	margin-left:auto;
	height: 8em;
	aspect-ratio: 1/1;
	min-width: 0;
}

.login a {
	max-width: 100%;
	overflow-wrap: break-word;
	text-align: center;
	font-size: ;
	min-width: 0;
}

.header{
	padding-left:4%;
	display: block;
	text-decoration: underline;
}

.header h2{
	font-size: clamp(1rem, 1.2vw + 0.7rem, 2rem);
	margin-bottom: 0;
}

.header h3{
	font-size: clamp(1rem, 1vw + 0.5rem, 2rem);
	margin-bottom: 0;
}

.main{
	display: flex;
	flex-wrap:wrap;
	flex:4;
	padding:2%;
	gap:1%;
}

.description{
	padding:2%;
	padding-top: 1%;
	display:flex;
	flex-direction: column;
	flex:2.5;
	font-size: clamp(0.95rem, 0.6vw + 0.8rem, 1.2rem);
}

.description p{
	margin-top:0px;
}

.spaced-form{
	margin-top:1em;
	width:50%;
}

.side-content{
	display:flex;
	flex:1;
	flex-direction: column;
	gap:5%;
	padding:1%;
	margin-bottom:5%;
}

.promo {
	display: flex;
	flex:1;
	overflow: hidden;
	align-items: flex-start;
	background-color: #3a352c;
}
.promo img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	display:block;
}

.register{
	display:flex;
	flex:1;
}

.register a{
	font-size:1.5em;
}

.button{
	background-color:#3a352c;
	height: 100%;
	width: 100%;
	border:1px solid black;
	border-radius: 5px;
}

.footer{
	font-size: clamp(0.75rem, 0.5vw + 0.4rem, 0.95rem);
	display: flex;
	margin-top: auto;
	min-width: 0;
}

.contact{
	flex:1;
	justify-content: left;
	padding-left:1em;
}

.copyright{
	padding:0.25em;
	margin-left:auto;
	display: flex;
	flex:1;
	max-width: 100%;
	overflow-wrap: break-word;
	text-align: center;
	justify-content: right;
}

@media screen and (max-width: 800px) {
	.description{
		flex:100%;
	}
	.login{
		flex:100%;
	}
}