/* Allgemeine Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;

    background: url('src/background2.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center; /* Zentriert horizontal */
    align-items: center;     /* Zentriert vertikal */
    min-height: 100vh;  
}
  
  /* Container für den gesamten Inhalt */
  .container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: whitesmoke;
    width: 500px;
  }
  
  /* Logo-Container: Logo rechts ausgerichtet */
  .logo-container {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
  }
  
  .logo {
    height: 50px;
  }
  
  /* Überschrift */
  h2 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Formularelemente */
  .form-group {
    margin-bottom: 15px;
  }
  
  textarea {
    display: grid;
    align-items: center;
    width: 100%;
    resize: none;
    padding: 10px;
    margin-top: 20px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  /* Buttons */
  button {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    margin-top: 10px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background-color: rgba(248, 148, 0);
    color: #fff;
  }
  
  button:hover {
    background-color: #fff;
    color: rgba(248, 148, 0);
  }
  
  /* QR Code Container */
  #qr-code {
    margin: 20px auto;
    width: 256px;
    height: 256px;
    text-align: center;
  }
  
