
    .popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0,0.1);
  z-index: 999;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 13%;
  transform: translate(-50%, -50%);
  background: white; /* Gradient from light blue to light sky blue */
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  
}
@media only screen and (max-width: 600px) {
 .popup-content {
     left: 45%;
  }
}
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size:30px;
}

#captchaImage {
  margin-top: 50px;
}
.popup-content{
    text-align:center;
}
#name,#email,#message,#captchaInput{
    width:300px;
    height:40px;
    border-radius:8px;
    box-shadow: rgba(239 236 236) 0px 5px 10px 0px inset;
}
#captcha {
  font-size: 24px; /* Adjust the font size of the CAPTCHA text */
}
#but{
 margin-top:10px;
 border-radius:10px;
}


