.bg-color-blue-white {
  /* background-color: #21d4fd;
  background-image: linear-gradient(19deg, #21d4fd 0%, #b721ff 100%); */
  background-image: linear-gradient( 135deg, #FF6FD8 10%, #3813C2 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  z-index: -1;
  min-height: 100vh;
}

.bg-color-btn {background-image: linear-gradient(to right, #834d9b 0%, #d04ed6  51%, #834d9b  100%)}
.bg-color-btn {
   /* margin: 10px; */
   /* padding: 15px 45px; */
   text-align: center;
   text-transform: uppercase;
   transition: 0.5s;
   background-size: 200% auto;
   color: white;            
   box-shadow: 0 0 20px #eee;
   border-radius: 10px;
   display: block;
 }

 .bg-color-btn:hover {
   background-position: right center; /* change the direction of the change here */
   color: #fff;
   text-decoration: none;
 }

.border-radius-form {
  border-radius: 10px;
}

input {
  background-color: #f2f2f2 !important;
  border-radius: 10px !important;
}

select {
  background-color: #f2f2f2 !important; /* Light gray background */

  color: #07070b !important; /* Dark blue text */
  /* border: 2px solid #1279eb !important;; Blue border */
  border-radius: 8px !important; /* Rounded corners */
  padding: 10px !important; /* Inner padding for better spacing */
  font-size: 16px; /* Larger font for readability */
  transition: all 1s ease-in-out !important;
}

.bottom-semi-circle {
  position: absolute;
  bottom: -10%;
  right: 0%;
  width: 50%;
  height: 80%;
  border-radius: 50%;
  /* border-top-left-radius: 50%;
  border-top-right-radius: 50%; */
  background: #7f00ff; /* Top semi-circle color */
  z-index: 0;
  overflow: hidden;
}

.text-color-heading {
  color: #07070b;
}

/* Reduce size for smaller screens */
@media (max-width: 768px) {
  .range-image {
      max-width: 100px;
  }
}

@media (max-width: 480px) {
  .range-image {
      max-width: 30px;
      height: 5px;
  }
}