/* Custom styles go here */

body {
  margin: 0;
  padding: 0;
  background-image: url("../img/loginBG.jpg");
   position: relative;
  height: 100vh;
   background-size: cover;
  background-position: center;
}

.login-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1); /* Adjust the opacity here */
  z-index: -1;
}
.login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  max-width: 360px;
  background-color: rgba(255, 255, 255, 0.9); /* Adjust the opacity here */
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-logo {
  text-align: center;
  font-size: 24px;
  color: #333;
  font-weight: bold;
}

.login-box-msg {
  text-align: center;
  padding: 10px 0;
  font-size: 18px;
  color: #555;
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  border-radius: 5px;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #007bff; /* Adjust the color to your preference */
  border-color: #007bff; /* Adjust the color to your preference */
}

.forgot-password {
  text-align: right;
}

.login-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;

}
