::selection {
	background: var(--accentColor); /* WebKit/Blink Browsers */
}
::-moz-selection {
	background: var(--accentColor); /* Gecko Browsers */
}

body {
	width: 100vw;
	height: 100vh;
	display: flex;
}

.loginBox {
	display: flex;
	padding: 0px 4em;
	flex-direction: column;
	justify-content: center;
	background: white;
}

.header {
	display: flex;
	justify-content: space-between;
	align-items: top;
	margin-bottom: 0.6em;
}

.header img.profilePicture {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-top: 4px;
	margin-left: 8px;
}

.header img.logo {
	max-height: 3em;
	max-width: 300px;
	margin-bottom: 8px;
}

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

form > div {
	display: inline-block;
}

.error {
	max-width: 300px;
}

.webauthnPrompt {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 1em auto;
	max-width: 300px;
	text-align: center;
}

.webauthnPrompt img.biometricsImg {
	height: 4em;
	width: auto;
	margin-bottom: 1em;
}

.skipRegisterWebauthnBtn {
	margin-top: 0.5em;
}

@media screen and (max-width: 420px) {
	body {
		display: block;
	}

	.loginBox {
		width: 100vw;
		height: 100vh;
		padding: 0;
	}

	.loginBox > * {
		margin: 1.5em;
	}

	input:not([type="checkbox"]) {
		min-width: 0px !important;
	}
}
