.custom-container {
  width: 600px;

  margin: auto;

  padding: 20px;
  border-radius: 10px;
  position: relative;
}

.custom-field {
  margin-bottom: 15px;
}

.custom-label {
  margin-bottom: 5px;
  display: block;
}

.custom-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.custom-button {
  width: 100%;
  padding: 10px;
  background-color: #00ff4c;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

.custom-button:hover {
  background-color: #0056b3;
}

.loader {
  display: none;
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.flower {
  width: 100px;
  height: 100px;
  position: absolute;
}

.left-flower {
  top: 50%;
  left: -120px;
  transform: translateY(-50%);
}

.right-flower {
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
}

.moving-flower {
  animation: moveFlower 5s infinite;
}

@keyframes moveFlower {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
