td.login {
	padding-right: 20px;
	height: 25px;
}

input.login {
	width: 150px;
}


#FoLeisteLogin div {
	font-size: 11px;
	font-weight: bold;
	display: inline;
	vertical-align:middle;
	text-align: left;
	padding-bottom: 20px;
}

#FoLeisteLogin a {
	font-size: 11px;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 10px;
	padding-right: 10px;
}

#oauth-login-form {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

#oauth-login-form iframe {
	background-color: transparent;
	border: none;
	flex-grow: 1;
}

.login-body {
	display: flex;
	flex-direction: column;
	height: 100vh;
}

.login-content {
	flex-grow: 1;

	/** center the login form */
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.login-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	background-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0) 60%);
	backdrop-filter: blur(1px);
	justify-content: center;
	align-items: center;
	z-index: 9999;
	display: none; /** flex set by javascript **/
}

.login-overlay-content {
	text-align: center;
	max-width: 600px;
	padding: 20px;
	border-radius: 5px;
}

/* Dunkleres Overlay in der Mitte */
.login-overlay:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.login-overlay-content {
	position: relative;
	z-index: 2; /* Sicherstellen, dass der Inhalt oben angezeigt wird */
	color: white;
	font-size: 16px;
}

.login-overlay-content .login-h2 {
	font-size: 20px;
	font-weight: 600;
}

.login-overlay-content .login-p {
	line-height: 27px;
	font-weight: 500;
	margin-top: 30px;
}

.login-overlay-content .login-close {
	margin-top: 30px;
}

.login-overlay-content .login-close a {
	color: white;
	text-decoration: underline;
}

.login-overlay-content .show-button {
	margin-top: 20px;
}

.left-align-msg {
	text-align: left;
}