﻿

.captchaContainer {
    width: 100%;
    float: left;
    height: 50px;
    margin-bottom: 20px;
}



    .captchaContainer p {
        width: 26%;
        float: left;
        text-align: left;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 20px;
        color: #999999;
        font-weight: normal;
        margin: 0 0 0 5px;
        padding: 5px;
        cursor: pointer;
    }





.refreshbutton[disabled] {
    opacity: 0.6;
}


.loadingForCaptcha {
    display: inline-block;
}

.loderForCaptcha {
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;    
    position: relative;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}


@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.captchaImg {
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    float: left;
    justify-content: center;
    background-image: url(../Images/captcha_bg.bmp);
}
