


    /* Modal background overlay */
/* .modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
} */

/* Flex container to center the image */
/* .modal-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
} */

/* Modal image */
/* .modal-image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
} */

/* Caption text */
/* .caption-text {
  color: #fff;
  margin-top: 10px;
  text-align: center;
} */

/* Close button */
/* .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
} */

/* Responsive (optional) */
/* @media (max-width: 600px) {
  .modal-content {
    max-height: 60vh;
  }

  .close {
    top: 10px;
    right: 15px;
    font-size: 24px;
  }
} */

  .popup-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

   /* Popup box */
  .popup-box {
    background: #fff;
    width: 400px;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: popIn 0.4s ease;
  }


   /* Animation for popup */
  @keyframes popIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  /* Close button */
  .close-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
  }


    .enq-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
  }






/* login */

  .login-container {
  width: 45%;
  min-width: 320px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* padding: 4rem; */
  position: relative;
  z-index: 2;
   margin: 20px auto;
  padding: 40px 50px;
}
.login-1{
display: block;
  background-color: bisque;
}

.login-container input[type=text],
.login-container input[type=password] {
  border: 1px solid #c0c0c0;
  transition: .2s;
}