        @import url('https://fonts.googleapis.com/css2?family=Libre+Barcode+39&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
        @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
        
        *, *::before, *::after {
            box-sizing: border-box;
        }

        body {
            font-family: 'Jost', sans-serif;
            font-size: 14px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background-color: #333;
            margin: 0;
            padding: 120px 10px 0 10px;
            box-sizing: border-box;
        }

        .gruen { color: #06D6A0; }
        .rot { color: #FF6666; }
        .gelb { color: #FFD166; }
        .blau { color: #3399FF; }
        .grau { color: #888; }
        .hellgrau { color: #f0f0f0; }
        .weiss { color: #ffffff; }


        .gruen_bg { background-color: #06D6A0; }
        .rot_bg { background-color: #FF6666; }
        .gelb_bg { background-color: #FFD166; }
        .blau_bg { background-color: #3399FF; }
        .grau_bg { background-color: #888; }
        .schwarz_bg { background-color: #222; }

        .hellgruen_bg { background-color: #cefde8; }
        .hellrot_bg { background-color: #ffe1e1; }
        .hellgelb_bg { background-color: #fff0c6; }
        .hellblau_bg { background-color: #eef8ff; }
        .hellgrau_bg { background-color: #f0f0f0; }

        .container {
            background-color: #f5f5f5;
            color: #333;
            padding: 0 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 100%;
            max-width: 400px;
            box-sizing: border-box;
        }
        
        .form-container,
        .result-container {
            padding: 0;
            margin: 0;
            text-align: center;
            width: 100%;
            max-width: 400px;
            box-sizing: border-box;
        }
        
        .zz-top {
            --mask: conic-gradient(from 135deg at top,#0000,#000 1deg 89deg,#0000 90deg) 50%/10px 100%;
            -webkit-mask: var(--mask);
            mask: var(--mask);
        }
        
        .zz-bottom {
            background-color: #f5f5f5;
            --mask: conic-gradient(from -45deg at bottom,#0000,#000 1deg 89deg,#0000 90deg) 50%/10px 100%;
            -webkit-mask: var(--mask);
            mask: var(--mask);
        }   
        
        .circle-cut {
            --r: 10px; /* cut size */
            background-color: #f5f5f5;
            padding: 0;
            margin: 0;
            width: 100%;   
            max-width: 400px;
            height: 40px;
            aspect-ratio: 1;
            mask: radial-gradient(var(--r) at var(--r),#0000 calc(100% - 1px),#000) calc(-1*var(--r));
        }
    
        .success-icon {
            display: inline-block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: #fff;
            font-size: 25px;
            line-height: 50px;
            margin: 0 0 10px 0;
        }

        p {
            font-size: 14px;
            margin: 10px 0;
        }

        .info-card {
            padding: 0 15px;
            font-size: 12px;
            color: #333;
        }

        .info-card .label {
            font-weight: bold;
            text-transform: uppercase;
            text-align: left;
        }

        .info-card .value {
            text-align: right;
        }
      
        .info-card .location {
            text-align: left;
        }  

        .info-card table {
            width: 100%;
            margin: 0;
        }   
        
        .info-card table th {
            padding: 5px 0;
            font-size: 10px;
            color: #ccc;
            text-align: left;
            text-transform: uppercase;
            width: auto;
        }  

        .info-card table td {
            padding: 5px 0;
            font-size: 12px;
            width: auto;
        }   
      
        .button {
            color: #fff;
            padding: 10px 15px;
            border: none;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            margin: 10px 0 30px 0;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
        }

        .button:hover {
            background-color: #5E35B1;
        }

        h1, h2, h4 {
            margin: 0;
        }  
      
        h1 {
            font-family: "Share Tech Mono", monospace;
            font-weight: 400;
            font-size: 32px;
            word-break: break-all;
            text-transform: uppercase;
        } 
        
        h2 {
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 18px;
        } 

        h3 {
            font-size: 24px;
            line-height: 1.2;
        } 

        h4 {
            font-size: 60px;
            line-height: 1.2;
        } 
      
        sup {
            font-size: 28px;
        } 
      
        hr {
            border: dashed 1px #ccc;
            margin: 20px 0;
            width: 100%;
        }
            
        .code39 {
            font-family: "Libre Barcode 39", system-ui;
            font-size: 48px;
            line-height: 20px;
            margin: 25px 0 0 0;
        } 

        .imprint {
            font-size: 12px;
            display: inline-block;
            text-decoration: none;
        } 
        
        .card {
            width: 100%;
            max-width: 250px;
            height: auto;
            border-radius: 10px;
            margin: -80px 0 10px 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
            display: inline-block;        
        }
        
        .message {
            font-weight: 600;
            text-transform: uppercase;
            font-size: 16px;
        } 

        .infobox {
            background-color: #fff;
            width: 90%;
            padding: 10px;
            border-radius: 8px;
            margin: 20px auto 30px;
        } 
        
        /* From Uiverse.io by Satwinder04 */ 
        .input-container {
            position: relative;
            margin: 20px auto;
            width: 200px;
            font-family: "Share Tech Mono", monospace;
            text-transform: uppercase;
        }

        .input-container input[type="text"] {
            font-size: 20px;
            width: 100%;
            border: none;
            border-bottom: 2px solid #ccc;
            padding: 5px 0;
            background-color: transparent;
            outline: none;
            font-family: "Share Tech Mono", monospace;
            text-transform: uppercase;
        }

        .input-container .label {
            position: absolute;
            top: 0;
            left: 0;
            color: #ccc;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .input-container input[type="text"]:focus ~ .label,
        .input-container input[type="text"]:valid ~ .label {
            top: -20px;
            font-size: 16px;
            color: #333;
        }

        .input-container .underline {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 2px;
            width: 100%;
            background-color: #333;
            transform: scaleX(0);
            transition: all 0.3s ease;
        }

        .input-container input[type="text"]:focus ~ .underline,
        .input-container input[type="text"]:valid ~ .underline {
            transform: scaleX(1);
        }

        /* Responsive Adjustments */
        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }

            .card {
                max-width: 250px;
            }
                   
        }