/* Allgemeine Stile für die Seite */
body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom, #0077b6, #0095e3); /* Blauer Verlaufshintergrund */
  margin: 0;
  padding: 0;
  overflow: hidden; /* Verhindert das Scrollen des Hintergrunds */
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden; /* Verhindert das Scrollen des Hintergrunds */
}

.form-container {
  background-color: rgba(255, 255, 255, 0.95); /* Leicht transparenter weißer Hintergrund */
  padding: 30px;
  border-radius: 10px; /* Leicht abgerundete eckige Ecken für das Formular */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); /* Tiefere Schatten für das Formular */
  text-align: center;
  transition: transform 0.3s ease;
  background-size: cover;
  animation: moveBackground 20s linear infinite; /* Hintergrundbewegung mit Animation */
}

@keyframes moveBackground {
  0% {
      background-position: 0 0;
  }
  100% {
      background-position: 100% 0;
  }
}

.form-container:hover {
  transform: scale(1.05);
}

/* Stile für die Login-Sektion */
.login-section {
  background-color: transparent; /* Transparente Kacheln */
  border-radius: 10px; /* Leicht abgerundete eckige Ecken für die Kacheln */
  padding: 20px;
  margin: 15px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Schatten für die Kacheln */
  border: 2px solid #0095e3; /* Blauer Rahmen um die Kacheln */
  position: relative;
}

/* Stile für das Formular */
h2 {
  color: #0077b6; /* Blaue Überschrift */
  font-size: 36px; /* Größere Schriftgröße für die Überschrift */
  margin-bottom: 20px; /* Mehr Abstand unter der Überschrift */
  font-family: 'Open Sans', sans-serif; /* Neue Schriftart für die Überschrift */
}

p {
  color: #444; /* Grauer Textfarbe für den Text */
  font-size: 18px; /* Textgröße für den Text */
}

form {
  max-width: 400px;
  margin: 0 auto;
}

/* Einzigartige Gestaltung für den Login-Bereich */
.login-section::before {
  content: '';
  background: url('your-unique-design-image.png') no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 10px; /* Leicht abgerundete eckige Ecken für das einzigartige Design */
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: 2px solid #0077b6; /* Blauer Rahmen */
  border-radius: 10px; /* Abgerundete Ecken */
  transition: border-color 0.3s ease, transform 0.3s ease;
  transform: scale(1);
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.8); /* Leicht transparentes Weiß für die Eingabefelder */
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: #0056a3; /* Helleres Blau beim Fokus */
  transform: scale(1.03);
}

button {
  background: linear-gradient(to bottom, #0077b6, #0095e3); /* Blauer Farbverlauf für den Button */
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 10px; /* Abgerundete Ecken für den Button */
  cursor: pointer;
  transition: background 0.3s ease;
  font-weight: 600; /* Fettschrift für den Text im Button */
  text-transform: uppercase; /* Großbuchstaben für den Text im Button */
}

button:hover {
  background: linear-gradient(to bottom, #0095e3, #0077b6); /* Umgekehrter Farbverlauf beim Hover */
}
