#rapidmail-popup {
  position: fixed;
  bottom: -600px;
  right: 20px;
  width: 320px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: bottom 0.5s ease;
  z-index: 99999;
  font-family: "Poppins", Sans-serif;
}

.rapidmail-close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 30px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.rapidmail-close:hover {
  color: #000;
}

#rapidmail-popup.show {
  bottom: 20px;
}

.rapidmail-popup-content {
  padding: 20px;
}

.rapidmail-popup-content h3 {
  font-size: 18px;
  color: #222;
  font-family: "Poppins", Sans-serif;
  margin-top: 20px;
}

.rapidmail-popup-content input {
  width: 100%;
  margin: 5px 0;
  padding: 10px;
  border: 1px solid #ddd !important;
  border-radius: 6px;
  font-size: 14px;
}

.rapidmail-popup-content input::placeholder {
  font-size: 14px !important; /* change to your desired size */
  color: #c3c4c7 !important;
}

.rapidmail-popup-content button {
  background-color: #047735;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  font-weight: bold;
  margin-top: 8px;
}

.rapidmail-popup-content button:hover {
  opacity: 0.7;
}

.rapidmail-hide {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: #555;
  text-decoration: underline;
  cursor: pointer;
}
