.form-popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
}

.form-popup-blur {
  filter: blur(3px);
}

.form-popup-box {
  background: #ffffff;
  max-width: 420px;
  width: 90%;
  border-radius: 12px;
  padding: 24px 28px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  text-align: center;
}

.form-popup-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5f7ea;
  color: #4fb748;
  font-size: 30px;
}

.form-popup-title {
  font-size: 22px;
  margin-bottom: 8px;
  color: #222222;
}

.form-popup-text {
  font-size: 14px;
  color: #555555;
  margin-bottom: 20px;
}

.form-popup-actions {
  display: flex;
  justify-content: center;
}

.form-popup-btn-primary {
  border: none;
  outline: none;
  padding: 10px 24px;
  border-radius: 999px;
  background: #4fb748;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .form-popup-box {
    padding: 20px 18px;
  }
}
