    <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
	    width: 940px;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
        }

        .container {
            background: white;
            padding: 20px;
            border-radius: 8px;
	    align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 600px;
        }

        .header {
            text-align: center;
            margin-bottom: 20px;
            position: relative;
        }

        .header-link {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 12px;
            color: #007bff;
            text-decoration: none;
        }

        .header-link:hover {
            text-decoration: underline;
        }

        .logo {
            width: 100px;
            height: auto;
        }

        .menu {
            display: flex;
            justify-content: space-between;
            background-color: 	#627d9b;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 4px;
            color: white;
			font-family: Arial, sans-serif; /* Schriftart explizit angeben */
            font-size: 14px;
        }

        .menu a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        .menu a:hover {
            text-decoration: underline;
        }

        form {
            display: flex;
	    width: 100%;
 	    align-items: center;
  	    justify-content: center;
            flex-direction: column;
            gap: 15px;
        }

        form label {
			font-family: Arial, sans-serif; /* Schriftart explizit angeben */
            font-size: 14px;
            font-weight: bold;
        }

        form input {
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 14px;
        }

        form button {
            padding: 10px;
            background-color: 	#627d9b;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
        }

        form button:hover {
            background-color: #0056b3;
        }

 