/* ========================
 *  CSS RESET - YUI 3.18.1
 *  http://yuilibrary.com/yui/docs/cssreset/

 #captchaContainer {
    font-size: 2em;
    font-weight: bold;

    position: absolute;

    background-color: #efefef;
    padding: 0.5em;
    height: 100px;
    max-width: 450px;
    float: none;
    margin: 50px auto;

    border: 4px solid #ccc;
    color: #3a3a3a;
    background-color: #fff;
    font-family: 'Roboto Slab', sans-serif;
    
    line-height: 1.5;
    }

 * ======================== */


#captchaContainer {
    font-size: 2em;
    font-weight: bold;

    background-image: url("/pics/misc/robot.png"); 
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: 0, 0;

    background-color: #efefef;
    padding: 0.5em;
    height: 300px;
    width:550px;
    max-width: 450px;
    float: none;
    /* margin: 50px auto; */

    border: 4px solid #ccc;
    color: #3a3a3a;
    background-color: #fff;
    font-family: 'Roboto Slab', sans-serif;
    
    line-height: 1.5;
}


.captcha-button {
    background-color: #efefef;
    color: #3a3a3a;
    cursor: pointer;
    float: right;
    padding: 0 0.5rem;
    height: 50px;
    width: 150px;
    border: solid 4px #1bbd4f;
    border-radius: 25px;

    font-size: 16px;
    font-weight: bold;

    -webkit-transition: all 100ms linear;
    -moz-transition: all 100ms linear;
    -o-transition: all 100ms linear;
    -ms-transition: all 100ms linear;
    transition: all 100ms linear;
}
.captcha-button:hover {
    background-color: #1bbd4f;
    color: #fff;
}
.captcha-button:active {
    box-shadow 0px 4px 8px rgba(darken(dodgerblue, 30%));
    transform scale(.98);
}
.captcha-button:disabled {
    border: solid 4px #ccc;
    color: #999;
}
.captcha-button:disabled:hover {
    background-color: #efefef;
}

#captchaInput {
    width: 2.5em;
    margin-left: .5em;
    text-align: center;
    font-size: 1.0em;
    font-weight: bold;
    border-color: rgb(10, 10, 10);
    border-width: 2px;
}
