  <style>
    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background: #f6f6f6;
      color: #333;
    }
    header {
      background: #330033;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
    }
    header img {
      height: 60px;
    }
    .language-switcher select {
      padding: 6px 10px;
      font-size: 0.95em;
      border: none;
      border-radius: 6px;
      background: white;
      color: #330033;
    }
nav a {
  margin-left: 20px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
  padding: 6px 12px;
  border-radius: 5px;
}

nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
}



  .hero {
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('/static/img/warehouse.webp') center/cover no-repeat;
  filter: blur(4px) brightness(0.6);
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}


    .hero h1 {
      font-size: 3em;
      animation: fadeInUp 1s ease;
	color: #ffffff;

    }
    .hero p {
      font-size: 1.2em;
      animation: fadeInUp 1.5s ease;
    }
    @keyframes fadeInUp {
      from {opacity: 0; transform: translateY(20px);}
      to {opacity: 1; transform: translateY(0);}
    }
    .section {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  padding: 0 20px;
}

    .card {
      background: white;
      padding: 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      transition: 0.3s;
 max-width: 320px;
  margin: 0 auto; /* für noch mehr Zentrierung */
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    }
    .card i {
      font-size: 2em;
      color: #990000;
      margin-bottom: 15px;
    }
    form {
      margin-top: 40px;
    }
    form input, form textarea {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    form button {
      background: #996633;
      color: white;
      padding: 12px 25px;
      border: none;
      border-radius: 6px;
      font-size: 1em;
      cursor: pointer;
    }
    .footer {
      text-align: center;
      padding: 40px 20px;
      background: #330033;
      color: #ddd;
    }
    .footer a {
      color: #ccc;
      text-decoration: none;
      margin: 0 10px;
    }

.login-container {
  display: flex;
  min-height: 100vh;
}

.login-image {
  flex-basis: 60%;
  background: url('/static/img/buro.webp') center/cover no-repeat;
  min-height: 100vh;
}

.login-form {
  flex-basis: 40%;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
}

@media (max-width: 768px) {
  .login-container {
    flex-direction: column;
  }
  .login-image {
    min-height: 200px;
    flex-basis: auto;
  }
  .login-form {
    flex-basis: auto;
    padding: 40px 20px;
  }
}


  </style>