.fedapay-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: white;
  padding: 25px;
  border-radius: 8px;
  width: 90%;
  max-width: 450px;
  position: relative;
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

#fedapay-btn {
  background: #0f6536;
  color: white;
  border: none;
  padding: 14px;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}
#fedapay-btn:hover {
  background: #0d4c2a;
}

#fedapay-btn:disabled {
  background: #0d4c2a;
  cursor: not-allowed;
}
