

.bg-style {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  background-image: url(../image/bg-image.png);
  margin: 0;
  position: relative;
  z-index: 0;
}

.sliderValidation {
  position: fixed;
  top: 50%; left: 50%;
  width: 320px;
  padding: 30px;
  background: rgba(255,255,255,0.95);
  border-radius: 10px;
  box-shadow: 0 0 10px #aaa;
  transform: translate(-50%,-50%);
  z-index: 9999;
  display: none;
  text-align: center;
}

.slider-container {
  width: 300px;
  height: 50px;
  margin: 20px auto 0;
  background: #fff;
  border: 1px solid #e2ba8e;
  border-radius: 26px;
  position: relative;
  user-select: none;
}

.slider-track {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
}

.slider-fill {
  position: absolute;
  height: 100%;
  top: 0; left: 0;
  width: 0;
  background: #c6a480;
  z-index: 1;
  border-radius: 26px 0 0 26px;
}

.slider-thumb {
  position: absolute;
  width: 50px; height: 100%;
  left: 0; top: 0;
  background: #e2ba8e;
  border-radius: 26px;
  cursor: pointer;
  z-index: 2;
}

.slider-text {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e2ba8e;
  font-size: 16px;
  z-index: 3;
  pointer-events: none;
}

