#uhcaptcha {
  position: absolute;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  white-space: nowrap;
  cursor: pointer;
  color: #444;
}

#uhcheckboxborder{
  height: 60px;
  width: 300px;
  border: 2px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  padding-top: 12px;
  padding-left: 12px;
}

#uhcaptcha:hover {
  color: #666;
}

#uhcheckbox {
  position: relative;
  float: left;
  margin-right: .5em;
  width: 1.6em;
  height: 1.6em;
  border: 2px solid #ccc;
  border-radius: 5px;
  transition: all 0.2s;
  box-sizing: border-box;
}

#uhcheckbox:hover {
  border-color: #aaa;
  background: #eee;
}

#uhcaptcha.loading {
  cursor: default;
  color: #444;
}

.loading #uhcheckbox {
  border-radius: 50%;
  background: transparent;
  border-color: #888;
  border-width: 8px;
  border-style: inset;
  animation: spin 1s infinite linear;
}

.pass #uhcheckbox {
  background: #c1d9a3;
  border-color: #669f56;
}

.pass #uhcheckbox:before {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  content: "\2713";
  font-size: 20px;
  color: #275f18;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fail {
  animation: fail 0.1s 4;
}