/* Стили для чекбокса согласия на обработку персональных данных */
.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    color: inherit;
}

.form__checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin: 0;
    margin-top: 2px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #ccc;
    border-radius: 3px;
    background-color: transparent;
    position: relative;
    transition: all 0.2s ease;
}

.form__checkbox input[type="checkbox"]:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.form__checkbox input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form__checkbox input[type="checkbox"]:focus {
    outline: 2px solid rgba(76, 175, 80, 0.5);
    outline-offset: 2px;
}

.form__checkbox input[type="checkbox"]:hover {
    border-color: #4CAF50;
}

.form__checkbox_text {
    flex: 1;
    display: inline-block;
    line-height: 1.5;
}

.form__checkbox_text a.form__description_link {
    color: #4CAF50;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.form__checkbox_text a.form__description_link:hover {
    color: #45a049;
    text-decoration: none;
}

/* Адаптивность */
@media (max-width: 768px) {
    .form__checkbox {
        font-size: 13px;
        gap: 8px;
    }
    
    .form__checkbox input[type="checkbox"] {
        width: 16px;
        height: 16px;
        margin-top: 1px;
    }
    
    .form__checkbox input[type="checkbox"]:checked::after {
        left: 4px;
        top: 1px;
        width: 4px;
        height: 8px;
    }
}
