.contact-consent-control {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.contact-consent-control > input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    box-sizing: border-box;
    display: inline-grid;
    flex: 0 0 18px;
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    padding: 0;
    margin: 2px 0 0;
    border: 2px solid var(--color-gray-500);
    border-radius: 3px;
    background: #fff;
    color: #fff;
    place-content: center;
    cursor: pointer;
}
.contact-consent-control > input[type="checkbox"]::before {
    content: "";
    width: 8px;
    height: 4px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg) scale(0);
    transition: transform 120ms ease;
}
.contact-consent-control > input[type="checkbox"]:checked {
    border-color: var(--color-primary);
    background: var(--color-primary);
}
.contact-consent-control > input[type="checkbox"]:checked::before {
    transform: rotate(-45deg) scale(1);
}
.contact-consent.form-row.invalid .contact-consent-control > input[type="checkbox"]:not(:checked) {
    border-color: var(--control-invalid-border);
    background: #fff;
}
.contact-consent-control > input[type="checkbox"]:disabled {
    border-color: var(--color-gray-300);
    background: var(--color-gray-100);
    cursor: not-allowed;
}
.contact-consent-control > input[type="checkbox"]:focus-visible {
    outline: 3px solid rgba(3, 130, 231, 0.24);
    outline-offset: 2px;
}
.contact-consent-control > label {
    display: block;
    margin: 0;
    line-height: 1.45;
}
.contact-form-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.contact-form-actions .btn {
    width: min(100%, 260px);
}
