body {
            font-family: Arial, sans-serif;
            background-color: #222;
            // background-color: #f4f4f4;
			 margin: 0;
            overflow: hidden;
        }

        .login-container {
            max-width: 400px;
            margin: 50px auto;
            padding: 20px;
            background-color: #222;
            border-radius: 5px;
			border: 1.5px solid #fff;
            //box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
            box-shadow: 0 0 20px 4px rgba(255, 0, 0, 0.4);
			    color: #f00;

        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 5px;
        }

        .form-group input {
            width: 100%;
            padding: 8px;
			padding: 8px;
			border: 1px solid;
            box-sizing: border-box;
        }
		 #elevator {
			position: absolute;
			top: 0;
			right: calc(33.33% - 500px);
			width: 500px;
			//height: 200px;
			animation: elevatorAnimation 15s linear infinite;
		}
		#gewicht {
			position: absolute;
			top: -10%;
			right: calc(35% - 400px);
			width: 400px;
			
			animation: elevatorAnimation2 15s linear infinite;
		}
			

        @keyframes elevatorAnimation {
            0%, 95%, 100% {
                top: -75%;
				//animation-timing-function: ease-in;
            }

            15%, 25%, 70%, 80% {
                top: -50%;
				// animation-timing-function: ease-out;
            }

            40%, 50%{
                top: -10%;
            }
        }
		
		@keyframes elevatorAnimation2 {
            40%, 50% {
                top: -75%;
				//animation-timing-function: ease-in;
            }

            15%, 25%, 70%, 80% {
                top: -30%;
				// animation-timing-function: ease-out;
            }

            0%, 95%, 100%{
                top: -5%;
            }
        }