.privacy-field {
    margin: 1.5rem 0;
}

.privacy-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
}

.privacy-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.privacy-box {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1px solid #ccc;
    background: #fff;
    display: inline-block;
    position: relative;
    margin-top: 2px;
}

.privacy-label input:checked + .privacy-box::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-text {
    color: #999999;
    font: 14px / 22px "FiraSans-Regular";
}

.privacy-text a {
    color: #8257b0;
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

.privacy-error {
    display: none;
    color: #ff0000;
    margin-top: 5px;
    padding-left: 28px;
    font: 14px / 22px "FiraSans-Regular";
}

.privacy-field.error .privacy-error {
    display: block;
}

.form-free-seat .input-field .error {
    position: static;
}
