/* Haupt-Hintergrund (Dunkles Blau analog zum Aurora-Logo) */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #051024;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

/* Die Haupt-Box (Card) mit dem markanten Neon-Glow */
.wrap, .container {
    max-width: 480px;
    margin: 50px auto;
    background: rgba(13, 24, 46, 0.85); /* Leicht helleres Dunkelblau */
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #00f0ff; /* Cyan Rahmen */
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.35), inset 0 0 15px rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Überschriften */
h1, h2 {
    font-size: 26px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Feld-Beschriftungen (Labels) */
label {
    color: #d1d5db;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

/* Eingabefelder */
input[type="text"], 
input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #3a5075;
    border-radius: 8px;
    font-size: 16px;
    color: #ffffff;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* Leuchteffekt, wenn man in das Feld klickt */
input[type="text"]:focus, 
input[type="email"]:focus {
    border-color: #00f0ff;
    outline: none;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

/* Platzhalter-Text (z.B. "Max", "Mustermann") */
input::placeholder {
    color: #6b7280;
}

/* Checkbox (Newsletter ankreuzen) */
input[type="checkbox"] {
    accent-color: #00f0ff;
    margin-right: 10px;
    transform: scale(1.2);
}

/* Der Button mit dem blau-türkisen Verlauf (Gradient) */
button, 
input[type="submit"] {
    width: 100%;
    background: linear-gradient(90deg, #0044ff 0%, #00f0ff 100%);
    color: #ffffff;
    padding: 16px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 240, 255, 0.4);
}

/* Button-Effekt beim Darüberfahren mit der Maus */
button:hover, 
input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.6);
    background: linear-gradient(90deg, #1a5cff 0%, #33f3ff 100%);
}

/* Kleingedrucktes / Datenschutz-Text */
p, .help-text {
    color: #9ca3af;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

/* Links im Kleingedruckten */
a {
    color: #00f0ff;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* "Unterstützt von listmonk" bleibt konsequent versteckt */
.credit, 
a[href*="listmonk.app"] {
    display: none !important;
}
<div style="text-align: center; margin-bottom: 20px;">
    <img src="https://aurora-digital.at/wp-content/uploads/2026/08/ohne.png alt="Aurora Digital" style="max-width: 250px; height: auto;">
</div>