:root {
    --hlc-primary: #8e44ad;
    --hlc-bg: #cdb9d6;
    --hlc-text: #333;
}

.hlc-captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    font-family: inherit;
}

.hlc-lock-wrapper {
    width: 44px;
    height: 44px;
    background-color: var(--hlc-bg);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.hlc-lock-wrapper:hover {
    transform: scale(1.05);
}

.hlc-lock-wrapper.hlc-active {
    cursor: default;
    transform: scale(1);
}

.hlc-icon-box {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hlc-icon {
    width: 24px;
    height: 24px;
    fill: var(--hlc-primary);
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.hlc-lock {
    opacity: 1;
    transform: scale(1);
}

.hlc-check {
    opacity: 0;
    transform: scale(0.5);
}

.hlc-lock-wrapper.hlc-active .hlc-lock {
    opacity: 0;
    transform: scale(0.5);
}

.hlc-lock-wrapper.hlc-active .hlc-check {
    opacity: 1;
    transform: scale(1);
}

.hlc-label {
    color: var(--hlc-text);
    font-size: 15px;
    font-weight: 500;
    user-select: none;
    line-height: 1.2;
}