/* Затемнение фона */
#cp-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* стало темнее */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  z-index: 999999;
}

#cp-popup-overlay.cp-open {
  opacity: 1;
  visibility: visible;
}

/* Сам попап */
#cp-popup {
  background: #fff;
  padding: 26px;
  border: 1px solid #ebebeb;
  border-radius: 10px !important;
  width: 90%;
  max-width: 420px;
  position: relative;
  color: #203656; /* текст */
}

/* Крестик */
#cp-popup-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
  color: #203656;
}

#cp-popup h3 {
  margin: 0 0 15px 0;
  font-size: 20px;
  color: #203656;
}

/* Форма */
#cp-popup-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

#cp-popup-form input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid #dadada;
  border-radius: 6px;
  color: #203656;
}

/* Кнопка */
#cp-popup-submit {
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  color: #fff;

  background: linear-gradient(to top, #ffa387 0%, #fe4f70 51%, #ffa387 100%);
}

/* Сообщения */
#cp-popup-result {
  margin-top: 15px;
  font-size: 14px;
}

.cp-popup-caution {
  margin-top: 1rem;
  font-size: 12px;
}
