body {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  padding-bottom: 80px; /* Platz für fixed footer */
}

img {
  max-width: 200px;
  height: auto;
}

form {
  width: 100%;
  max-width: 350px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

label {
  font-size: 14px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
}

button {
  width: 100%;
  margin-top: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover {
  box-shadow: 0 6px 14px rgba(15, 76, 92, 0.25);
  transform: translateY(-1px);
}

.footer-login {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--color-footer);
  font-size: 12px;
  padding: 16px 24px;
  background: var(--color-bg);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-login.footer-login--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.info-box {
  background-color: var(--color-bg);
  border: 1px solid var(--color-secondary);
  padding: 15px;
  border-radius: 8px;
  color: var(--color-footer);
  max-width: 350px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.info-text {
  font-weight: 600;
  margin-bottom: 8px;
}

.info-inhalt {
  margin: 4px 0;
}

.info-box hr {
  margin: 15px 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.info-detail {
  margin-left: 20px;
  font-size: 0.9em;
}

.info-password {
  margin-top: 10px;
}

.info-secondary {
  font-size: 0.85em;
  opacity: 0.75;
}

/* ========================================
   RESPONSIVE DESIGN - LOGIN
   ======================================== */

/* Tablet */
@media (max-width: 768px) {
  body {
    padding: 30px 20px;
    gap: 24px;
  }

  img {
    max-width: 180px;
  }

  form {
    max-width: 100%;
  }

  .info-box {
    max-width: 100%;
    font-size: 13px;
  }

  h1 {
    font-size: 22px;
  }

  label {
    font-size: 15px;
  }

  input[type="text"],
  input[type="email"],
  input[type="password"] {
    font-size: 16px;
    padding: 14px;
    min-height: 52px;
  }

  button {
    font-size: 17px;
    padding: 16px 20px;
    min-height: 56px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  body {
    padding: 20px 16px;
    gap: 20px;
  }

  img {
    max-width: 160px;
  }

  h1 {
    font-size: 20px;
  }

  .info-box {
    font-size: 12px;
    padding: 12px;
  }

  .info-detail {
    margin-left: 12px;
  }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
  body {
    padding: 16px;
    gap: 12px;
  }

  img {
    max-width: 120px;
  }

  h1 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .form-group {
    margin-bottom: 12px;
  }

  button {
    margin-top: 6px;
  }

  .info-box {
    font-size: 11px;
    padding: 10px;
  }
}
