/* fanXXL-Branding für die öffentlichen Listmonk-Seiten
   (Anmeldeformular, Opt-in-Bestätigung, Abmelden, Archiv) */
:root { color-scheme: dark; }

body {
  background: #0b0e09;
  color: #e6e9de;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

h1, h2, h3, h4 { color: #ffffff; }

a { color: #a3e635; }
a:hover { color: #bef264; }

button, input[type="submit"], .button {
  background: #a3e635;
  color: #0b0e09;
  border: 0;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  cursor: pointer;
}
button:hover, input[type="submit"]:hover, .button:hover { background: #bef264; }

input[type="text"], input[type="email"], select, textarea {
  background: #161a11;
  color: #e6e9de;
  border: 1px solid #2c321f;
  border-radius: 10px;
  padding: 10px 14px;
}
input:focus, select:focus, textarea:focus { outline: 2px solid #a3e635; border-color: #a3e635; }

/* Karten/Container der Standard-Seiten aufhellen statt weiß */
.wrap, .container, main, section {
  background: transparent;
}