/* ===== Dark Mode Basis ===== */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #0a0f1a;   /* dunkler Hintergrund */
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  /* ===== Header ===== */
  .nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* Logo | Navi | Login */
    align-items: center;
    background-color: #111827;
    padding: 15px 30px;
    border-bottom: 2px solid #14a6ff;
  }
  
  /* Logo links */
  .brand {
    justify-self: start;
  }
  .brand img {
    height: 150px;
    display: block;
  }
  
  /* Navi mittig */
  .links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
  }
  .links a:hover {
    background-color: #14a6ff;
    color: #0a0f1a;
  }
  
  /* Login rechts */
  .login {
    justify-self: end;
  }
  .login a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 5px;
  }
  .login a:hover {
    background-color: #14a6ff;
    color: #0a0f1a;
  }
  
  /* ===== Hauptbereich ===== */
  .content {
   /* Allgemeine Styles für den Body */
  body {
      font-family: Arial, sans-serif; /* Schriftart */
      margin: 0;
      padding: 0;
      background-color: #f4f4f4; /* Hintergrundfarbe */
  }
  
  /* Container für das Formular */
  .container {
      width: 50%; /* Breite des Formulars */
      margin: 50px auto; /* Zentriert das Formular */
      background-color: rgb(255, 255, 255); /* Hintergrundfarbe des Formulars */
      padding: 20px; /* Innenabstand */
      border-radius: 8px; /* Abgerundete Ecken */
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Schatteneffekt */
  }
  
  /* Überschrift des Formulars */
  h2 {
      text-align: center; /* Zentriert den Titel */
      margin-bottom: 20px; /* Abstand nach unten */
      color: #0a0f1a;
  }
  
  /* Style für die Labels */
  label {
      display: block; /* Labels als Blockelemente */
      margin: 10px 0 5px; /* Abstand um das Label */
      color: #0a0f1a;
  }
  
  /* Style für die Eingabefelder und Textarea */
  input, textarea {
      width: 100%; /* Volle Breite für Eingabefelder */
      padding: 10px; /* Innenabstand */
      margin: 10px 0; /* Abstand zu anderen Elementen */
      border: 1px solid #157ada; /* Randfarbe */
      border-radius: 4px; /* Abgerundete Ecken */
      box-sizing: border-box; /* Berücksichtigt Padding und Border in der Breite */
  }
  
  /* Style für den Absende-Button */
  button {
      background-color: #4CAF50; /* Hintergrundfarbe des Buttons */
      color: rgb(255, 255, 255); /* Textfarbe */
      border: none; /* Kein Rand */
      padding: 10px 20px; /* Innenabstand */
      cursor: pointer; /* Zeiger-Cursor beim Hover */
      border-radius: 4px; /* Abgerundete Ecken */
      width: 100%; /* Volle Breite für den Button */
  }
  
  /* Hover-Effekt für den Button */
  button:hover {
      background-color: #45a049;
  }
  
  }
  
  /* ===== Footer ===== */
  .footer {
    background-color: #111827;
    color: #b0b0b0;
    text-align: center;
    padding: 20px;
    border-top: 2px solid #14a6ff;
  }
  .footer-links {
    margin-bottom: 10px;
  }
  .footer-links a {
    color: #14a6ff;
    margin: 0 10px;
    text-decoration: none;
    font-weight: bold;
  }
  .footer-links a:hover {
    text-decoration: underline;
  }