﻿

.captcha-area {
    display: flex;
    height: 35px;
    margin: 0px 0 7px;
    align-items: center;
    justify-content: space-between;
}
.legend-item {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.captcha-area .captcha-img {
    height: 100%;
    width: 282px;
    user-select: none;
    background: #000;
    border-radius: 5px;
    position: relative;
}

.captcha-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    opacity: 0.95;
}

.captcha-img .captcha {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    color: #000000;
    font-size: 26px;
    text-align: center;
    letter-spacing: 10px;
    transform: translate(-50%, -50%);
    text-shadow: 0px 0px 2px #b1b1b1;
    font-family: 'Noto Serif', serif;
}


