#captcha {
  margin-top: 10px;
  width: 100%;
  display: flex;
  flex-direction:column
  }

#captcha .captchaContent{
  display: flex;
  gap: 10px;
  align-items:center
}

#captcha .captchaImage{
  width: 100%;
  max-width: 120px;
  height:40px;
  border-radius: 5px;
}

#captcha .captchaResponseImage{
  width:30px;
  height:30px
}

#captcha label.inputTitle{
  width:auto !important
}
#captcha button{
  width: 100%;
  max-width: 100px;
  height: 40px;
  border: 0;
  border-radius: 5px;
  cursor:pointer
}

#captcha input{
  width:100%;
  max-width:100px;
  text-align:center
}

#captchaLoader {
width: 30px;
  --b: 4px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--maincolor);
  -webkit-mask: repeating-conic-gradient(#0000 0deg,#000 1deg 70deg,#0000 71deg 90deg), radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: l5 1s infinite;
}
@keyframes l5 {to{transform: rotate(.5turn)}}
