/* General captcha container styling */
.captcha {
  margin: 15px 0px;
}

/* Captcha preview box styling */
.captcha .preview {
  background-color: #1869C8;
  color: #FFFFFF;
  width: 100%;
  text-align: center;
  height: 40px;
  line-height: 40px;
  letter-spacing: 8px;
  border: 1px dashed #bdbdbd;
  font-family: "monospace";
  font-size: 30px;
}

/* Styling each character in the preview */
.captcha .preview span {
  display: inline-block;
  user-select: none;
}

/* Captcha form styling */
.captcha .captcha-form {
  display: flex;
}

/* Input field for entering captcha */
.captcha .captcha-form input {
  width: 100%;
  padding: 8px;
  border: 1px solid #888;
}

/* Refresh button styling */
.captcha .captcha-form .captcha-refresh {
  width: 40px;
  border: none;
  outline: none;
  background: #CE0E41;
  color: #FFFFFF;
  cursor: pointer;
  text-align: center;
  padding-top: 8px;
  /* font-size: 18px; */
}
