#login-registration {
	margin: auto;
	padding: 64px 0;
	min-height: 500px;
	max-width: 2560px;
	background-image: url('/img/content/crowd.jpg');
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
}
#login-registration h2 {
	line-height: 100%;
	text-align: center;
}
#login-registration input {
	margin-bottom: 12px;
}
#login-registration .btn {
	display: block;
	margin: 0 auto;
	max-width: 60%;
}
#login-registration form {
	position: relative;
}
#login-registration .tooltip {
	display: none;
	position: relative;
	padding: 8px 12px;
	width: 100%;
	background-color: #616161;
	font-size: 1.4rem;
	line-height: 1.8rem;
	border-radius: 4px;
	color: #fafafa;
}
.lightmode #login-registration .tooltip {
	background-color: #bdbdbd;
	color: #424242;
}
#login-registration .tooltip::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #616161;
}
.lightmode #login-registration .tooltip::before {
	border-bottom-color: #bdbdbd;
}
#login-registration #login,
#login-registration #registration,
#login-registration #password-reset {
	margin: auto;
	padding: 24px;
	width: 100%;
	max-width: 400px;
	background-color: #212121;
	border-radius: 24px;
	animation-name: init_login;
	animation-duration: 1.5s;
}
.lightmode #login-registration #login,
.lightmode #login-registration #registration,
.lightmode #login-registration #password-reset {
	background-color: #e0e0e0;
}
#login-registration #login #password-reset-toggle {
	display: block;
	margin-top: 24px;
	text-align: center;
	font-size: 1.6rem;
	outline: none;
}
#login-registration #login #password-reset-mail {
	display: none;
	margin-top: 12px;
}
#login-registration #registration #registerUsernameLabel {
	position: relative;
	margin-bottom: 24px;
}
#login-registration #registration #registerUsernameLabel::after {
	content: "";
	position: absolute;
	top: 0;
	right: 12px;
	font-family: 'Material Symbols Rounded';
	font-size: 24px;
	height: 36px;
	line-height: 36px;
}
#login-registration #registration #registerUsernameLabel.fieldSuccess::after {
	content: "done";
	color: var(--color-accent);
}
#login-registration #registration #registerUsernameLabel.fieldError::after {
	content: "error";
	color: #8f4444;
}
#login-registration #registration #registerUsernameLabel #registerUsername {
	margin-bottom: 0;
}
#login-registration #registration #registerAgbLabel {
	margin: 12px 0 24px 0;
	display: flex;
    align-items: center;
	gap: 12px;
}
#login-registration #registration #registerAgbLabel span {
	display: block;
	line-height: 0;
}
#login-registration #registration #registerAgbLabel span:last-child {
	flex-grow: 1;
	font-size: 1.5rem;
	line-height: 1.2;
}
#login-registration #registration #registerAgbLabel span input {
	margin-bottom: 0;
}

@media (max-width: 599px) {
	#ueber .grid > div:last-child,
	#deine-daten .grid > div:last-child {
		padding: 24px;
		order: 1;
	}
	#ueber .grid > div:first-child,
	#deine-daten .grid > div:first-child {
		order: 2;
	}
}
#keine-ki {
	background-color: #424242;
}
#keine-ki .grid > div:last-child {
	order: 1;
}
#keine-ki .grid > div:first-child {
	order: 2;
}
.lightmode #keine-ki {
	background-color: #e0e0e0;
}

@keyframes init_login {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}