/* ============================= */
/* ✅ HEADER - Layout Fix */
/* ============================= */

/* 🔹 Logo und Titel in die Mitte */

/* 🔹 Login-Feld am rechten Rand */
.desktop-login {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* 🔹 Login-Formular Styling */
#login-form {
  display: flex;
  flex-direction: column;
}

#login-form input {
  padding: 8px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  width: 180px;
  margin-bottom: 5px;
}

#login-form button {
  background: #D32F2F;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

#register-text {
  font-size: 14px;
  color: gray;
  cursor: pointer;
  margin-top: 5px;
}

#register-text:hover {
  color: white;
}

#login-form button:hover {
  background: #FF3D00;
}