

.salt-footer-form-error {
    color: #e74c3c;
    font-size: 12px;
    display: block;
}

.salt-footer-form-success {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    color: #DD9184;
    font-weight: bold;
    text-align: center;
}

.salt-modal .salt-default-form .field.field-checkbox label {
    display: grid;
    grid-template-areas: "check text";
    grid-template-columns: 20px auto;
    gap: 6px;
    cursor: pointer;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.salt-modal .salt-default-form .field.field-checkbox .text {
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 0;
    padding: 0;
}

.salt-modal .salt-default-form .field.field-checkbox .text a {
    color: #022247;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.salt-modal .salt-default-form .field.field-checkbox .text a:hover {
    color: #022247;
}

.salt-modal .salt-default-form .field.field-checkbox label input~.check {
    background-color: #fff;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 18px;
    border: 1px solid #ddd;
    border-radius: 50%;
    grid-area: check;
    display: block;
    align-self: start;
    text-align: center;
    font-size: 14px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.salt-modal .salt-default-form .field.field-checkbox label input:checked~.check {
    background-color: #022247;
    border-color: #022247;
    color: #fff;
}

.salt-modal .salt-default-form .field.field-checkbox:hover .check {
    border-color: #022247;
}

.salt-modal .salt-default-form .field.field-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.salt-modal .salt-default-form .fields {
    margin-bottom: 0;
}

.salt-modal .salt-default-form .field.field-checkbox {
    margin: 20px 0;
    padding: 0;
}