html, body {
	height: 100%;
}

#website {
	align-items: center;
	display: flex;
	justify-content: center;
	height: 100%;
	margin: 0;
	max-width: 100%;
	width: calc(100% - 10px);
}

#website > nav {
	display: none;
}

#website > main {
	background-color: var(--transparent_70);
	backdrop-filter: blur(10px);
	padding: 30px;
	width: 500px;
}



#login > .logo {
	background-image: url(../../images/logotyp-white.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border-radius: 5px;
	height: 63px;
	margin: 0 auto 30px auto;
	width: 350px;
}

#login > form {
	margin: 0 auto;
}



#login > details {
	margin-top: 20px;
}

#login > details > summary {
	border: 1px dashed var(--line);
	font-size: 100%;
}

#login > details[open] > summary {
	border-bottom: 0;
}

#login > details > .content {
	border: 1px dashed var(--line);
	border-top: 0;
	line-height: 140%;
	font-size: 94%;
	padding: 0 15px 10px 15px;
}

#login > details > .content > p {
	padding: 5px 0;
	text-align: justify;
}




@media only screen and (max-width: 820px) {
	#website {
		display: block;
	}
}
