.pk-ef-consent-form {
    margin-top: 2rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid #d7e4e7;
    background: #fff;
}

.pk-ef-consent-form h3 {
    margin-top: 0;
}

.pk-ef-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.pk-ef-field {
    min-width: 0;
}

.pk-ef-field-full {
    grid-column: 1 / -1;
}

.pk-ef-field label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 700;
}

.pk-ef-field input,
.pk-ef-field select,
.pk-ef-field textarea {
    box-sizing: border-box;
    width: 100%;
    min-height: 48px;
    padding: .7rem .8rem;
    border: 1px solid #a9bac0;
    border-radius: 4px;
    background: #fff;
    color: #142f36;
    font: inherit;
}

.pk-ef-field textarea {
    min-height: 120px;
    resize: vertical;
}

.pk-ef-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-weight: 500;
}

.pk-ef-checkbox input {
    width: 20px;
    min-height: 20px;
    margin-top: .15rem;
}

.pk-ef-submit {
    margin-top: 1.25rem;
    padding: .85rem 1.25rem;
    border: 0;
    border-radius: 4px;
    background: #f5a623;
    color: #102f39;
    font-weight: 800;
    cursor: pointer;
}

.pk-ef-submit:hover,
.pk-ef-submit:focus-visible {
    background: #ffc04d;
}

.pk-ef-privacy-note {
    margin-bottom: 0;
    color: #52666d;
    font-size: .9rem;
}

.pk-ef-consent-notice {
    margin-bottom: 1rem;
    padding: .8rem 1rem;
    border-left: 4px solid;
}

.pk-ef-consent-success {
    border-color: #147a55;
    background: #eaf7f1;
}

.pk-ef-consent-error {
    border-color: #a33131;
    background: #fff0f0;
}

.pk-ef-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 700px) {
    .pk-ef-form-grid {
        grid-template-columns: 1fr;
    }

    .pk-ef-field-full {
        grid-column: auto;
    }
}
