/* Allgemeine Stile für das gesamte Dokument */
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #EFF6FF 0%, #F3F4F6 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: #374151;
  line-height: 1.6;
}

/* Loginfenster */
.loginfenster {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

#container1 {
  width: 100%;
  max-width: 420px;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 
      0 20px 40px rgba(30, 58, 138, 0.12),
      0 8px 25px rgba(30, 58, 138, 0.08);
  background: #FFFFFF;
  border: 1px solid rgba(30, 58, 138, 0.1);
  text-align: center;
}

#formularrahmen {
  padding: 0;
}

.Loginüberschrift {
  font-size: 32px;
  font-weight: 600;
  color: #1E3A8A;
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: -0.02em;
}

#container1 img {
  width: 160px;
  height: auto;
  margin: 0 auto 25px auto;
  display: block;
  border-radius: 8px;
}

input[type="text"],
input[type="password"],
input[type="email"] {
  font-size: 16px;
  display: block;
  width: 100%;
  margin: 2px 0 15px 0;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  box-sizing: border-box;
  background: #ffffff;
  transition: border-color 0.2s ease;
  outline: none;
  font-family: inherit;
  color: #374151;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus {
  border-color: #1E3A8A;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder {
  color: #9ca3af;
}

.buttonLogin {
  font-size: 16px;
  font-weight: 500;
  display: block;
  width: 100%;
  margin: 25px 0;
  padding: 14px 20px;
  border-radius: 10px;
  box-sizing: border-box;
  background: #1E3A8A;
  color: white;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.buttonLogin:hover {
  background: #1E3A8A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.label-login {
  color: #374151;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin: 15px 0 2px 0;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 480px) {
  #container1 {
      margin: 20px;
      padding: 30px 25px;
  }
  
  .Loginüberschrift {
      font-size: 24px;
  }
}