.captcha-puzzle-container {
  position: relative;
  mix-blend-mode: normal;
  border-radius: 25px;
  height: auto;
  margin: 20px 0 0 0;
  padding: 16px;
  background-color: #E1E0E1;
  display: flex;
  flex-direction: column;
}

.captcha-puzzle-container:after {
  top: 100%;
  left: 92px;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border: 10px solid rgba(255, 255, 255, 0);
  margin-left: -10px;
}

.puzzle-container {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.puzzle-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.puzzle-piece-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.puzzle-piece {
  position: absolute;
  width: 136px;
  height: 136px;
  top: 0;
  margin-left: -33px;
}

.slider-controls-container {
  display: flex;
  gap: 12px;
  margin-bottom: 5px;
  margin-top: 5px;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-button-left {
  position: absolute;
  top: -12px;
  left: 0;
  width: 62px;
  height: 62px;
  border: 1px solid #00000085;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: grab;
  transform: translateX(0);
}

.slider-button-left:active {
  cursor: grabbing;
}

.slider-progress {
  position: absolute;
  height: 100%;
  border-radius: 20px 0 0 20px;
  width: 0%;
}

.slider-text.hidden {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.slider-button-left::after {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid #00000085;
  border-right: 2px solid #00000085;
  margin-right: 4px;
  transform: rotate(45deg);
  display: block;
}

.slider-button-inner {
  width: 12px;
  height: 12px;
  border-top: 2px solid #00000085;
  border-right: 2px solid #00000085;
  transform: rotate(45deg);
}

.slider-track {
  position: relative;
  width: 100%;
  height: 40px;
  background-color: white;
  border-radius: 20px;
}

.puzzle-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  margin: 0;
  z-index: 10;
  cursor: pointer;
}

.puzzle-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1px;
  height: 40px;
  background: transparent;
  cursor: pointer;
}

.puzzle-slider::-moz-range-thumb {
  width: 1px;
  height: 1px;
  background: transparent;
  cursor: pointer;
  opacity: 0;
}

.slider-text {
  color: #B2B2B2;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: -32px;
  margin-right: 30px;
  z-index: 10000;
  pointer-events: none;
}

.puzzle-controls-container {
  display: flex;
  gap: 9px;
  margin-top: 13px;
}

.control-button {
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #b2b2b2;
  margin-top: 7px;
}

.validate-container {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.submit-btn {
  font-family: 'Open Sans', serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  border-radius: 100px;
  padding: 10px 30px;
  cursor: pointer;
}

.puzzle-icon-typo {
  font-weight: 400;
  color: #B2B2B2;
  font-size: larger;
  padding: 0 5px;
  cursor: pointer;
}