* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #ee7fad 0%, #e24687 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
/*
 // Bild als BG
.container {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 500px;
  transition: transform 0.3s ease;
  overflow: hidden; /* wichtig, damit das Bild & Overlay sauber im Container bleiben */ /*
  z-index: 0; /* Basis für die Pseudo-Elemente */ /*
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/circle-icon-512-solid-rose.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain; /* oder 'cover', je nach gewünschter Wirkung */ /*
  opacity: 0.5; /* Bild leicht durchscheinen lassen */ /*
  z-index: -2; /* hinter Inhalt */ /*
}

.container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4); /* halbtransparentes Overlay */ /*
  z-index: -1; /* zwischen Bild und Inhalt */ /*
}

.container:hover {
  transform: translateY(-5px);
}
*/
        .container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 40px;
            width: 100%;
            max-width: 500px;
            transition: transform 0.3s ease;
        }

        .container:hover {
            transform: translateY(-5px);
        }
        .footer {
            margin-top: 20px;          /* Abstand nach oben zum Container */
            text-align: center;        /* Inhalt zentrieren */
            font-size: 0.9em;          /* etwas kleiner als Fließtext */
            color: rgba(255, 255, 255, 0.4); /* dezente weiße Schrift */
        }

        /* Links im Footer */
        .footer a {
            color: rgba(255, 255, 255, 0.9);   /* leicht helleres Weiß für bessere Lesbarkeit */
            text-decoration: none;             /* Unterstreichung entfernen */
            transition: color 0.3s ease;       /* sanfter Hover-Effekt */
        }

        /* Hover-Zustand */
        .footer a:hover {
            color: #ffffff;                    /* reines Weiß beim Hover */
            text-decoration: none;             /* sicherheitshalber nochmal ohne Unterstreichung */
        }

        /* Copyright */
        .footer p.copy {
            font-size: 0.6em;
        }

        /* Optional: dezente Animation, wenn der Container „schwebt“ */
        .container:hover + .footer {
            transform: translateY(-5px);
            transition: transform 0.3s ease;
        }
/*
        h1 {
            color: #333;
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.5em;
            font-weight: 700;
        }

        h1.bgimage {
            background-image: url('../img/circle-icon-512-solid-rose.png');
            background-repeat: no-repeat;        /* Bild nicht kacheln 
            background-position: center center; 
            background-size: cover; 
            /** padding: 50px;
        }
*/
        h1 {
        position: relative;
        display: block; /* oder block, je nach Layout */
                    color: #333;
                    text-align: center;
                    margin-bottom: 30px;
                    font-size: 2.3em;
                    font-weight: 700;
	                /*padding-left: 0.5em;*/
        overflow: hidden; /* wichtig, damit das Overlay nicht herausragt */
        }

        h1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/circle-icon-512-solid-rose.png');
        background-position: left center;
        background-repeat: no-repeat;
        background-size: contain; /* skaliert das Bild passend zur H1-Größe */
        z-index: -1; /* liegt hinter Text */
        }

        h1::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.4); /* halbtransparentes Overlay */
        z-index: -1; /* zwischen Bild und Text */
        }

        .form-section {
            margin-bottom: 40px;
        }

        .section-title {
            color: #555;
            font-size: 1.4em;
            margin-bottom: 20px;
            font-weight: 600;
            border-bottom: 2px solid #667eea;
            padding-bottom: 10px;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-weight: 500;
            font-size: 0.95em;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"] {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        input[type="tel"]:focus {
            outline: none;
            border-color: #667eea;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .error {
            border-color: #e74c3c !important;
            background: #fdf2f2 !important;
        }

        .error-message {
            color: #e74c3c;
            font-size: 0.85em;
            margin-top: 5px;
            display: block;
        }

        .error-message.block{
            background: #f8d7da; 
            color: #721c24; 
            padding: 15px; 
            border-radius: 8px; 
            margin-bottom: 20px;
        }

        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            border: 1px solid #c3e6cb;
        }

        .info-text {
            background: #e3f2fd;
            color: #1565c0;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 0.9em;
            line-height: 1.4;
        }

        .info-text.warning {
            background: #fff3cd; 
            color: #856404; 
            border: 1px solid #ffeaa7;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            margin-top: 20px;
        }

        input[type="checkbox"] {
            margin-right: 12px;
            margin-top: 2px;
            transform: scale(1.2);
        }

        .checkbox-label {
            font-size: 0.9em;
            line-height: 1.4;
            cursor: pointer;
        }

        .btn-group {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        button {
            flex: 1;
            padding: 15px 30px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ee7fad 0%, #e24687 100%);
            color: white;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }

        .btn-secondary {
            background: #f8f9fa;
            color: #666;
            border: 2px solid #e1e5e9;
        }

        .btn-secondary:hover {
            background: #e9ecef;
            border-color: #adb5bd;
        }

        .required {
            color: #e74c3c;
        }

        /* Language Switcher Styles */
        .language-switcher {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 1000;
        }
        
        .language-dropdown {
            position: relative;
            display: inline-block;
        }
        
        .language-dropdown select {
            appearance: none;
            background: transparent;
            border: 1px solid #ddd;
            border-radius: 20px;
            padding: 6px 10px 6px 10px;
            font-size: 11px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .language-dropdown select:hover {
            border-color: #999;
            color: #333;
        }
        
        .language-dropdown select:focus {
            outline: none;
            border-color: #667eea;
            color: #333;
        }

        @media (max-width: 600px) {
            .container {
                padding: 25px;
                margin: 10px;
            }
            
            h1 {
                font-size: 1.9em;
            }
            
            .btn-group {
                flex-direction: column;
            }
        }