﻿body {
    background-color: #f1f1f1;
}

input[type=text] {
    padding: 6px 13px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#captchaTextBox {
    width: 100%;
}

button {
    background-color: #006699;
    border: none;
    color: white;
    padding: 12px 20px;
    width: 223px;
    border-radius: 4px;
    text-decoration: none;
    margin: 4px 0px;
    cursor: pointer;
}

canvas {
    /*prevent interaction with the canvas*/
    pointer-events: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 20px 50px;
}

.inline {
    position: relative;
    margin-top: -34px;
    right: 1.5px;
    float: right;
    cursor: pointer;
    transition: all .8s ease;
    background-color: #fff;
    padding: 5px;
    border-radius: 3px;
    width: 18px;
    box-shadow: 0 1px 13px 0px #ccc;
    border-top: 0.5px solid #ccc;
    border-left: 0.5px solid #ccc;
}

    .inline:hover {
        box-shadow: 0 1px 5px 0px #ddd;
    }

        .inline:hover > i {
            transform: rotate(180deg) scale(1.02);
            transition: all 1s ease;
            transition-duration: infinite;
        }

.captcha-title {
    width: 100%;
    text-align: center;
    padding: 5px 0;
    font-family: 'Helvetica';
}

.banner {
    width: 260px;
    box-shadow: 0 2px 13px 0px #666;
}

.banner-box {
    /*margin-left: 39.5%;*/
}

.checkBox-box {
    padding: 10px;
    top: -10px;
    border: 0.5px solid #aaa;
    background-color: #fff;
    width: 220px;
    border-radius: 5px;
    display: inline-flex;
    justify-content: space-around;
    align-items: center;
    margin-left: 1%;
    box-shadow: 0 2px 8px 0px #999;
}

.checkbox-wrapper-39 *,
.checkbox-wrapper-39 *::before,
.checkbox-wrapper-39 *::after {
    box-sizing: border-box;
}

.checkbox-wrapper-39 label:first-child {
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.checkbox-wrapper-39 input {
    visibility: hidden;
    display: none;
}

    .checkbox-wrapper-39 input:checked ~ .checkbox {
        transform: rotate(45deg);
        width: 12px;
        margin-left: 8px;
        margin-top: -10px;
        border-color: #006699;
        border-top-color: transparent;
        border-left-color: transparent;
        border-radius: 0;
    }

.pre {
    display: flex;
    justify-content: center;
    margin-left: -45px;
}

.checkbox-wrapper-39 .checkbox {
    display: block;
    width: inherit;
    height: inherit;
    border: 2px solid #999;
    border-radius: 10px;
    transition: all 0.375s;
}

label.botLabel {
    font-family: 'Helvetica';
    margin-left: -10px;
}

.captcha-title > span {
    top: -3px;
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
}

.container {
    padding: 10px;
    border: 1px solid #ccc;
    max-width: 223px;
    margin-left: 1%;
    border-radius: 4px;
    box-shadow: 0 1px 13px 0px #ccc;
    margin-top: 10px;
    background: #fff;
    opacity: 0;
    transition: all 1s ease-in;
}
