.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 16px;
  width: 450px;
  max-width: 90%;
  position: relative;
}

/* CLOSE BUTTON */
#closeBtn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #555;
}

/* TITLE */
.popup-title {
  text-align: center;
  color: #e74c3c;
  margin-bottom: 20px;
}

/* INPUTS */
.popup-content input,
.popup-content textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* BUTTON */
.popup-content button {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  background: #02162e;
  color: white;
  font-size: 16px;
  cursor: pointer;
}


/* INPUT TEXT COLOR */
.popup-content input,
.popup-content textarea {
  color: #000; /* black text */
  background: #fff;
}

/* PLACEHOLDER COLOR */
.popup-content input::placeholder,
.popup-content textarea::placeholder {
  color: #888; /* grey placeholder */
}