
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;

}
.bodyContainer {
  height: calc(100vh - 140px);
}
.navbar {
  background-color: #002b56;
  padding: 1rem;
  top: 0;
  position: fixed;
  width: 100%;
 }
.navbar-brand img {
  height: 50px;
  margin-right: 10px;
}
.navbar-brand span {
  color: white;
  font-weight: bold;
  font-size: 1.25rem;
  vertical-align: middle;
}
.login-card {
  background: white;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 2rem;
}
.form-control::placeholder {
  color: #999;
}
.btn-login {
  pointer-events: none;
  opacity: 0.5;
}
.footer {
  background-color: #002b56;
  color: white;
  padding: 1rem;
  font-size: 0.9rem;
  bottom:0;
  position: fixed;
  width: 100%;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
  color: #ccc;
}
a:active {
  color: #999 !important;
}
a:hover {
  text-decoration: underline !important;
}
