/* ---------------------------------------------------
   LOGIN PAGE
--------------------------------------------------- */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Container */
.login-container {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  max-width: 400px;
  width: 100%;
}

/* Logo + Titel in einer Zeile */
.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;              /* enger, harmonischer Abstand */
  margin-bottom: 20px;
}

.brand-row .logo {
  width: 60px;           /* leicht reduziert für bessere Proportionen */
  margin: 0;
}

.brand-row h1 {
  margin: 0;
  font-size: 2.5rem;     /* minimal kleiner für bessere Balance */
  font-weight: bold;
}

/* Untertitel */
.subtitle {
  font-size: 1em;
  color: #666;
  margin-bottom: 30px;
}

/* Buttons */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.btn {
  display: block;
  padding: 12px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
}

.btn.demo {
  background: #0078d4;
  color: white;
}

.btn.login {
  background: #ccc;
  color: #333;
}

/* Hinweistext */
.pilot-note {
  font-size: 0.85em;
  color: #777;
  margin-top: -2px;      /* leicht angehoben */
}

/* Footer */
.footer-links {
  margin-top: 30px;
  font-size: 0.85em;
  color: #999;
  text-align: center;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  margin: 0 4px;
}
