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

.cnp-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.cnp-content h2 {
  margin-bottom: 15px;
  font-size: 30px;
}

.cnp-content input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.cnp-content button {
  background: #0073aa;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
}
p.drjay-popup-des {
    font-size: 14px;
}
.cnp-content button:hover {
  background: #005f8d;
}

.cnp-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.cnp-hidden {
  display: none;
}

#cnp-success {
  margin-top: 15px;
  font-weight: bold;
  color: green;
  font-size: 15px;
}
.cnp-terms p {
    font-size: 10px !important;
    line-height: 14px !important;
    text-align: left !important;
}