.login-container{
	width: 100%;
	max-width: 1920px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.top-svg-container{
	width: 100%;
	display: flex;
	flex-shrink: 0;
	height: 40%;
	position: relative;
	margin-top: 40px;
	color: #595957;
	max-height: 400px;
	min-height: 370px;
}

#Ebene_1{
	position: absolute;
	height: 100%;
	width: 100%;
}

#Ebene_2{
	position: absolute;
	left: 5%;
	bottom: 0;
	width: 25%;
	height: 25%
}

#Ebene_3{
	position: absolute;
	top: 0;
	right: 5%;
	width: 40%;
	height: 45%;
}

.login-main-container{
	/*background-color: #00ddff;*/
	width: 100%;
	flex-grow: 1;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: space-evenly;
}

.main-container-child{
	width: 50%;
	/*background-color: #2ac3a2;*/
	display: flex;
	justify-content: center;
	align-items: center;
}

.login-description{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 75%;
	line-height: 2.5;
	color: rgb(112, 112, 112);
	font-size: 15px;
}

#login-form {
	width: 70%;
	height: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10%;
	min-height: 175px;
	min-width: 320px;
	max-width: 450px;
	max-height: 250px;
	position: relative;
}

.login-form-input {
	width: 80%;
	height: 30%;
	font-size: 18px;
}

.login-form-input-btn {
	width: calc(80% + 20px);
	height: 30%;
	font-size: 18px;
	color: #646464;
}

#login-status{
	font-size: 15px;
	padding: 20px;
	opacity: 0;
	color: rgba(255, 255, 255, 0);
	transition: 0.3s ease-in-out;
}

.input-field-container{
	width: 100%;
	height: 66%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	position: relative;
}

.loading-form{
	position: absolute;
	top: 33%;
	color: #ef7d00;
	display: none;
	font-size: 50px;
}

.login-form-container{
	flex-direction: column !important;
}

.login-fail{
	color: #4092bc !important;
	font-style: italic;
	transition: 0.3s ease-in-out;
}

.show-status{
	opacity: 1 !important;
	transition: 0.3s ease-in-out;
}

@media (max-width: 1200px) {
	.top-svg-container{
		margin-top: 5px;
		min-height: 230px;
	}
}

@media (max-width: 1000px) {
	.top-svg-container{
		margin-top: 5px;
		min-height: 150px;
	}
}

@media (max-width: 777px) {
	.top-svg-container{
		margin-top: 5px;
		max-height: 100px;
		min-height: 100px;
	}

	.login-main-container{
		flex-direction: column-reverse;
		gap: 20px;
		margin-top: 5px;
	}

	.main-container-child{
		width: 100%;
	}

	.login-container{
		flex-grow: 1 !important;
		min-height: 700px !important;
	}

	#login-form {
		width: 100%;
		height: 100%;
	}

	.login-form-container{
		height: 400px;
	}

	.login-description{
		width: 90%;
	}

}