.captcha-input:disabled {
	opacity: 0.6;
	cursor: not-allowed !important; 
	filter: grayscale(50%) brightness(75%);
}

.captcha-wrapper {
  box-sizing: border-box;
  min-height: 50px;
  display: flex;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 599px) {
  .captcha-wrapper {
    width: 95%;
    margin-bottom: 10px;
  }
}
.captcha-wrapper .child {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: opacity .5s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}
.captcha-wrapper .child.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.captcha-wrapper .captcha-progress-wrapper {
  align-items: start;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.captcha-wrapper .captcha-progress-wrapper .captcha-progress {
  width: 100%;  
  box-sizing: border-box;
  position: relative;
  background-color: #e0e0e0;
  padding: 3px;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}
.captcha-wrapper .captcha-progress-wrapper .captcha-progress .captcha-progress-fill {
  display: block;
  height: 22px;
  background-color: #659cef;
  border-radius: 3px;
  transition: width 50ms ease-in-out;
}
.captcha-wrapper .captcha-progress-wrapper .captcha-progress .captcha-progress-text {
  position: absolute;
  color: black;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.captcha-wrapper .captcha-success-wrapper {
  align-items: center;
  display: flex;
  gap: 10px;
}
.captcha-wrapper .captcha-success-wrapper .captcha-success-mark {
  padding: 5px;
  background: #74b22b;
  color: white;
  width: 32px;
  min-width: 32px;
  height: 32px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  box-shadow: 1px 1px 4px green;
}
.captcha-wrapper .captcha-success-wrapper .captcha-success-label {
  font-size: .9rem;
}
