.login-wrapper {
  background: rgba(15, 23, 42, 0.9);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.8);
  max-width: 420px;
  width: 100%;
  margin: 4rem auto;
}

.login-wrapper h1 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.login-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-wrapper input {
  padding: 0.75rem 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid #1f2937;
  background: #020617;
  color: #e5e7eb;
}

.login-wrapper input::placeholder {
  color: #6b7280;
}

.login-wrapper button {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #22c55e;
  color: #022c22;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.login-wrapper button:hover {
  background: #16a34a;
  transform: translateY(-1px);
  box-shadow: 0 12px 25px -10px rgba(22, 163, 74, 0.7);
}

/* kompakter Button nur für Passwort-Sichtbarkeitstoggle im Input-Feld */
.login-wrapper button.password-toggle {
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #9ca3af;
  box-shadow: none;
  transform: none;
}

.login-wrapper button.password-toggle:hover {
  background: transparent;
  color: #e5e7eb;
  box-shadow: none;
  transform: none;
}
