/* index_auth.css – exklusives Styling NUR für Login-Seite */

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: #e6ecff;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* Container */
.login-container {
  width: 340px;
  padding: 28px;
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.login-container h1 {
  font-size: 20px;
  margin-bottom: 22px;
  color: #e6ecff;
  font-weight: 600;
}

/* Labels */
#login-form label {
  text-align: left;
  display: block;
  margin-top: 14px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--muted);
}

/* Inputs */
#login-form input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #111936;
  border: 1px solid #26324a;
  color: #e6ecff;
  font-size: 14px;
  outline: none;
  transition: border-color .15s ease;
}

#login-form input:focus {
  border-color: #3b82f6;
}

/* Button */
#login-form button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: var(--btn);
  border: 1px solid #26324a;
  color: #e6ecff;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}

#login-form button:hover {
  background: #2c3a59;
  transform: translateY(-1px);
}

/* Kleine Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
