.dealer-login {
  background: #15357b;
  min-height: calc(100vh - 160px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  font-family: 'Inter', sans-serif;
}
.dealer-login .card {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 50px;
  width: 100%;
  max-width: 420px;
  color: #000000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: fadeIn 0.4s ease-out;
}
.dealer-login .card h2 {
  margin: 0 0 25px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.dealer-login .card label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #94a3b8;
}
.dealer-login .card input[type="email"],
.dealer-login .card input[type="password"] {
  width: 100%;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  margin-bottom: 18px;
  color: #e2e8f0;
  transition: 0.2s;
}
.dealer-login .card input[type="email"]:focus,
.dealer-login .card input[type="password"]:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
  outline: none;
}
.dealer-login .card button {
  width: 100%;
  background: #C8D400;
  /* Hauptfarbe */
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}
.dealer-login .card button:hover {
  background: #a4ae07;
  /* feste Hover-Farbe */
}
.dealer-login .card button:active {
  background: #98a106;
  /* Klick-Farbe */
}
.dealer-login .card #toast {
  margin-top: 15px;
  background: #dc3545;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  color: white;
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
