.popup_form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #e9ddcf8b;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 999;
  /* height: 30%; */
  text-align: center;
  /*width: 40%;*/
  font-size: x-large;
  border-radius: 5px;
}

.popup_form .form-label {
  margin-bottom: 0px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 999;
}
.popup_form input[type="text"],.popup_form input[type="tel"] {
  width: 100%;
  padding: 8px;
  height: 65px;
}
.popup_form input,
.rc-anchor {
  border: 1px solid #000000;
}

.popup_form button {
  padding: 8px 15px;
  background-color: #337ab7;
  color: #fff;
  border: none;
  cursor: pointer;
}

.popup_form p 
{
  margin-bottom: 0px;
}

.error-message {
  color: #ff0000;
  font-size: medium;
}
