@import "./vars.pcss";

.captcha {
  width: var(--captchaWidth);
  height: var(--captchaHeight);
  transform: var(--captchaTransform);
  background: var(--captchaBg);

  &.isRendered.isInvalid {
    animation: var(--captchaBgInvalidAnimation);
  }

  &.isRendered {
    background: var(--captchaRenderedBg);
  }

  &:not(.isRendered) {
    cursor: wait;

    * {
      pointer-events: none;
    }
  }
}
