.loginBgc {
  background: url("/images/000deer.jpg") no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

.login-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  max-width: 600px;
  width: 100%;
  padding: 30px;
  border: 1px solid #000;
  z-index: 101;
  border-radius: 5px;
}

.login-form form {
  margin-top: 20px;
}

.logo {
  background: url("/images/icons/logo.png") no-repeat center center/cover;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.login-buttons {
  margin: 10px auto;
  display: flex;
  gap: 3vw;
}

.login-buttons .btn-primary {
  background-color: #7ab2b2;
}

.login-buttons button {
  width: 150px;
  border: none;
  border-radius: 5px;
}

.login-prompt {
  text-align: center;
  margin-top: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .login-form {
    width: 90%;
  }

  .login-buttons {
    flex-direction: column;
    gap: 10px;
  }
}
