.form-loader {
  display: none;
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
}

.form-success,
.form-error {
  display: none;
  text-align: center;
}

/* Popup */
.success-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .65);
  display: grid;
  justify-items: center;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.success-popup .box {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 420px;
  animation: pop .3s ease;
}

@keyframes pop {
  from {
    transform: scale(.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-popup .box h2 {
  margin-bottom: 10px;
  color: #00a529;
  font-size: 24px;
}

.success-popup .box p {
  font-size: 15px;
  color: #444;
}

.success-popup .close-btn {
  margin-top: 20px;
  background: #00a529;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}
