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

.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;
  }
}

.tag-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  min-height: 45px;
  background: #fff;
}

.tag-wrapper input {
  border: none !important;
  outline: none !important;
  flex: 1;
  min-width: 120px;
}

.tag {
  background: #0060ff;
  padding: 4px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  font-size: 13px;
}

.tag span {
  margin-left: 6px;
  cursor: pointer;
  font-weight: bold;
}
.form-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}
.form-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
}

.form-popup-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    z-index: 1000000 !important;
}
