.captcha {
    height: 36px;
    width: auto;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.captcha span {
    line-height: 36px;
    font-size: 13pt;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}
.captcha .check {
    border-radius: 4px;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border: 2px solid #1FCFE1;
    background: rgba(13,43,54,0.6);
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.captcha .check:hover {
    border-color: #fff;
    background: rgba(31,207,225,0.1);
}

.check .wrapper {
    width: 26px;
    display: block;
    margin: 0;
    padding: 1px;
}

.check .checkmark {
    stroke: #1FCFE1;
    stroke-dashoffset: 745.74853515625;
    stroke-dasharray: 745.74853515625;
    -webkit-animation: dash 0.6s ease-out forwards;
            animation: dash 0.6s ease-out forwards;
}

@-webkit-keyframes dash {
    0%   { stroke-dashoffset: 745.74853515625; }
    100% { stroke-dashoffset: 0; }
}
@keyframes dash {
    0%   { stroke-dashoffset: 745.74853515625; }
    100% { stroke-dashoffset: 0; }
}
