/* ====== Particle Background ====== */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #bfe079 0%, #1b4e07 100%);
  z-index: 1;
}

/* ====== Login Card Styling ====== */
.login-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Poppins", sans-serif;
}

.login-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 420px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

/* ====== Logos ====== */
.login-logo-area {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 25px;
}

.login-logo-area  {
  height: 70px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.cbd-logo{
   height: 70px; 
}
.gis-logo{
   height: 70px; 
}
.govt-logo{
   height: 90px; 
}

.login-logo-area img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #bfe079);
}

/* ====== Form Elements ====== */
.form-floating label {
  color: #333;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #1b4e07;
  box-shadow: 0 0 5px rgba(27, 78, 7, 0.4);
}

button.primaryAction {
  background: linear-gradient(135deg, #1b4e07, #bfe079);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  color: white;
  transition: all 0.3s ease;
}

button.primaryAction:hover {
  background: linear-gradient(135deg, #bfe079, #1b4e07);
  transform: translateY(-2px);
}
/* ====== Developed By Section ====== */
.developed-by {
  display: flex;
  align-items: center;       /* Vertically center text and logo */
  justify-content: center;   /* Center content horizontally */
  gap: 8px;                  /* Space between text and logo */
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.nespak-logo {
  height: 35px;
  opacity: 0.9;
  transition: all 0.3s ease;
  vertical-align: middle;
}

.nespak-logo:hover {
  transform: scale(1.05);
  opacity: 1;
}


/* ====== Error Message ====== */
.text-danger {
  text-align: center;
  font-weight: 500;
}

