/**
 * This file is part of ACaptcha.
 *
 * Licensed under The MIT License
 *
 * @author Hassan Mousavi
 */
#drag-verify-root {
    position: absolute;
    box-shadow: 0px 0px 5px 1px gray;
    border-radius: 7px;
    overflow: hidden;
    border: 5px solid white;
}
#drag-verify-bg {
    margin: 0;
    padding: 0;
    border-radius: 5px
}
#drag-verify-mask {
    position: absolute;
    z-index: 100;
}

#drag-verify-path {
    position: absolute;
    fill: none;
    stroke: Yellow;
    fill:none;
    stroke-width: 1;
    z-index: 50;
}

#drag-verify-note {
    margin: 0;
    padding: 0;
    height: 30px;
    background-color: white;
    font-size: medium;
    color: dimgrey;
    text-align: center;
    line-height: 30px;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 5px
}
.captcha-box {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
    direction:ltr;
}

.captcha-box h2 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.captcha-checkbox {
    display: flex;
    align-items: center;
    margin: 15px 15px;
}

.captcha-checkbox input {
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.captcha-checkbox label {
    font-size: 18px;
    font-weight:bold;
    color: #555;
}
@media (max-width: 480px) {
    .captcha-box {
        padding: 15px;
    }
    .captcha-box h2 {
        font-size: 16px;
    }
}
