.rootly-captcha-widget {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  padding: 12px 14px;
  margin: 14px 0;
  border: 1px solid #d9dde3;
  border-radius: 8px;
  background: #fafbfc;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}
.rootly-captcha-checkbox {
  position: relative;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 2px solid #b7bec7;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  padding: 0;
  display: block;
}
.rootly-captcha-checkbox.is-checked {
  border-color: #2f9e5b;
  background: #2f9e5b;
}
.rootly-captcha-checkbox.is-checked::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.rootly-captcha-checkbox.is-solving {
  border-color: #6d5ef8;
  animation: rootly-captcha-spin 0.9s linear infinite;
  border-top-color: transparent;
  cursor: wait;
}
@keyframes rootly-captcha-spin {
  to { transform: rotate(360deg); }
}
.rootly-captcha-text {
  flex: 1;
  min-width: 0;
}
.rootly-captcha-status {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #20242c;
}
.rootly-captcha-brand {
  display: block;
  margin-top: 1px;
  font-size: 11px;
  color: #8a909b;
}
.rootly-captcha-form-status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
}
.rootly-captcha-form-status.is-success {
  background: rgba(47, 158, 91, 0.12);
  color: #1c6b3d;
}
.rootly-captcha-form-status.is-error {
  background: rgba(217, 45, 45, 0.1);
  color: #a02222;
}
