body {
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background-color: #63b9e9;
            padding-top: 80px; /* Platz für das Logo */
        }
        
        /* Logo Styling */
        .logo {
            position: fixed;
            top: 40px;
            right: 40px;
            z-index: 1000;
        }
        
        .logo img {
            height: 50px;
            width: auto;
            display: block;
        }
        
        .form-container {
            padding: 20px;
        }
        
        .form-section {
            background-color: #006eb6;
            color: white;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: 8px;
            /* Entfernt: transition und hover-Effekte für blaue Bereiche */
        }
        
        h1 {
            margin-top: 0;
            font-weight: 600;
            text-align: center;
            color: #dbdbdb;
            margin-bottom: 30px;
        }
        
        h2 {
            font-weight: 600;
            margin-top: 0;
            margin-bottom: 15px;
            color: #dbdbdb;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: 300;
            color: #dbdbdb;
        }
        
        input, select, textarea {
            width: 100%;
            padding: 8px;
            border: 2px solid #dbdbdb;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            background-color: #dbdbdb;
            color: #616260;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        /* Hover-Effekt 1.04 für Eingabefelder */
        input:hover, select:hover, textarea:hover {
            transform: scale(1.04);
            box-shadow: 0 4px 12px rgba(0, 110, 182, 0.2);
            border-color: #006eb6;
        }
        
        input:focus, select:focus, textarea:focus {
            outline: none;
            border-color: #006eb6;
            box-shadow: 0 0 0 3px rgba(0, 110, 182, 0.2);
            transform: scale(1.04);
        }
        
        /* Fehler-Styling */
        .error {
            border-color: #ff4444 !important;
            box-shadow: 0 0 0 2px rgba(255, 68, 68, 0.3) !important;
            background-color: #ffebee !important;
        }
        
        .error-message {
            color: #ff4444;
            font-size: 0.85em;
            margin-top: 5px;
            display: block;
            background-color: rgba(255, 68, 68, 0.1);
            padding: 5px;
            border-radius: 4px;
        }
        
        .success-message {
            background-color: #006eb6;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        textarea {
            height: 100px;
            resize: vertical;
        }
        
        .row {
            display: flex;
            gap: 10px;
        }
        
        .col {
            flex: 1;
        }
        
        .col-small {
            flex: 0.3;
        }
        
        button {
            padding: 12px 24px;
            background-color: #dbdbdb;
            color: #006eb6;
            border: 2px solid #dbdbdb;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        
        button:hover {
            background-color: #006eb6;
            color: white;
            border: 2px solid white;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 110, 182, 0.3);
        }
        
        button:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(0, 110, 182, 0.3);
        }
        
        .required:after {
            content: " *";
            color: white;
        }
        
        small {
            color: white;
            font-size: 0.9em;
        }
        
        .file-input {
            padding: 5px;
            transition: all 0.3s ease;
        }
        
        .file-input:hover {
            transform: scale(1.04);
            box-shadow: 0 4px 12px rgba(0, 110, 182, 0.2);
        }
        
        /* Responsive Design für das Logo */
        @media (max-width: 768px) {
            .logo {
                top: 10px;
                right: 10px;
                padding: 8px;
            }
            
            .logo img {
                height: 40px;
            }
            
            body {
                padding-top: 70px;
            }
        }