
        body {
            font-family: 'Roboto', sans-serif;
            background-color: #d4edda; /* Etwas grünerer Grünton */
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
        }

        .container {
            display: flex;
            background-color: #fff;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
            border-radius: 10px;
            overflow: hidden;
            max-width: 900px;
            width: 100%;
        }

        .login-section, .illustration-section {
            padding: 40px;
        }

        .login-section {
            width: 50%;
            border-right: 1px solid #ddd;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .illustration-section {
            width: 50%;
            background-color: #4cc58277;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        h2 {
            margin-top: 0;
            margin-bottom: 40px;
            color: #333;
        }

        form {
            display: flex;
            flex-direction: column;
            width: 100%;
            align-items: center;
        }

        label {
            margin-bottom: 5px;
            color: #555;
        }

        input[type="text"],
        input[type="password"] {
            margin-top: 10px;
            margin-bottom: 20px;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 20px;
            font-size: 16px;
            width: 80%;
        }

        .checkbox-container {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            width: 80%;
        }

        .checkbox-container input {
            margin-right: 10px;
        }

        button {
            padding: 10px;
            background-color: #045227;
            color: #fff;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s ease;
            width: 80%;
        }

        button:hover {
            background-color: #4cc58277;
        }

        a {
            text-decoration: none;
            color: #004e14;
            font-size: 17px;
        }

        a:hover {
            color: #67a777;
        }

        img {
            max-width: 100%;
            height: auto;
            margin-top: 20px;
        }

        .progress-container {
            width: 80%;
            margin-top: 20px;
        }

        progress {
            width: 100%;
            height: 20px;
            margin-top: 10px;
        }

        progress::-webkit-progress-bar {
            background-color: #f3f3f3;
            border-radius: 10px;
        }

        progress::-webkit-progress-value {
            background-color: #4CAF50;
            border-radius: 10px;
        }

        progress::-moz-progress-bar {
            background-color: #4CAF50;
            border-radius: 10px;
        }
