#loginModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.modal-content input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
}

.modal-content button {
  width: 100%;
  padding: 10px;
}

.modal-content p {
  color: red;
  margin-top: 10px;
}
