/* fake captcha - START */
#fake-captcha {
    text-align: center;
    font-family: "Open Sans";
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    color: #000;
    margin-top: 5px;
    margin-bottom: 20px;
    height: 15px;
    width: 100%;
    clear: both;
}
#fake-captcha span {
    float: left;
    clear: right;
}
#fake-captcha:hover {
    color: #333;
}
#fake-checkbox {
    position: relative;
    float: left;
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 0;
    transition: all 0.2s;
    box-sizing: border-box;
    font-size: 10px;
}
#fake-checkbox:hover {
    border-color: #aaa;
    background: #eee;
}
#fake-captcha.loading {
    cursor: default;
    color: #ccc;
}
.loading #fake-checkbox {
    border-radius: 50%;
    background: transparent;
    border-color: #888;
    border-width: 12px;
    border-style: inset;
    animation: spin 1s infinite linear;
}
.pass #fake-checkbox {
    background: #c1d9a3;
    border-color: #669f56;
}
.pass #fake-checkbox:before {
    display: block;
    content: "\2713";
    font-size: 30px;
    color: #275f18;
    line-height: 10px;
}
 @keyframes spin {
 0% {
transform: rotate(0deg);
}
 100% {
transform: rotate(360deg);
}
}
.fail {
    animation: fail 0.1s 4;
}
 @keyframes fail {
 0% {
transform: translate(-50%, -50%);
}
 25% {
transform: translate(-51%, -50%);
}
 50% {
transform: translate(-50%, -50%);
}
 75% {
transform: translate(-49%, -50%);
}
 100% {
transform: translate(-50%, -50%);
}
}
/* fake captcha - END */
