:root{--page-title-display:none;}/* Start custom CSS *//* ⚡ Delegate Login Page */
.mun-login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  background: #0c0c0c; /* matte black */
  font-family: 'Inter', sans-serif;
}

.mun-login-box {
  width: 360px;
  padding: 35px;
  background: #111;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  text-align: center;
  color: #fefefe;
}

.mun-register-link {
  display: none !important;
}

.mun-login-box h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #d4af37; /* gold */
  letter-spacing: 1px;
}

/* Inputs */
.mun-login-box form input {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border-radius: 10px;
  border: 1px solid #2c2c2c;
  outline: none;
  background: #1a1a1a;
  color: #f1f1f1;
  font-size: 14px;
  transition: 0.3s;
}
.mun-login-box form input:focus {
  border-color: #d4af37;
}

/* Button */
.mun-login-box button {
  width: 100%;
  padding: 12px;
  margin-top: 15px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  background: #d4af37;
  color: #111;
  cursor: pointer;
  transition: 0.3s;
}
.mun-login-box button:hover {
  background: #c19d2b;
  transform: scale(1.03);
}

/* Error messages */
.mun-error {
  background: #b91c1c;
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 13px;
}/* End custom CSS */