.contact__input input {
  border-radius: 5px;
}

.amount-wrapper {
  position: relative;
}

.amount-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.amount-value {
  display: flex;
  align-items: center;
  gap: 6px;
}

.loan-amount-slide {
  min-width: 4ch; 
}

.currency {
  color: #c3c3c3;
}

.currency2 {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.amount-wrapper input {
  border: 0;
  padding: 0;
  width: 65px;
  font-size: 18px;
  font-weight: 600;
}

.amount-range {
  display: flex;
  justify-content: space-between;
  color: #c3c3c3;
}

/* Slider track */
input[type="range"] {
  -webkit-appearance: none;
  background: #e0e0e0;
  width: 100%;
  height: 10px;
  padding: 0px;
  outline: none;
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
}

/* Slider thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  width: 20px;
  height: 20px;
  background-color: #ffece1;
  border: 2px solid #d34d00;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Optional hover effect on slider */
input[type="range"]:hover {
  background-color: #fcfaf7;
}
