.edc-webform-wrap {
    background: #fff;
    color: #050505;
    border: 1px solid #111;
    padding: clamp(24px, 5vw, 56px);
    margin: 32px 0;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.edc-webform-header {
    max-width: 920px;
    margin-bottom: 28px;
}

.edc-webform-eyebrow {
    margin: 0 0 10px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.edc-webform-header h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: .94;
    font-weight: 800;
    letter-spacing: -.055em;
    word-spacing: .2em;
}

.edc-webform-header p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 760px;
    line-height: 1.55;
    margin: 0;
}

.edc-webform-notice {
    padding: 18px 20px;
    border: 2px solid #111;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 1rem;
}

.edc-webform-notice strong {
    display: block;
}

.edc-webform-error-list {
    margin: 12px 0 0 22px;
    padding: 0;
    font-weight: 600;
}

.edc-webform-error-list li + li {
    margin-top: 4px;
}

.edc-webform-notice-success {
    background: #f4f4f4;
}

.edc-webform-notice-error {
    background: #fff1f1;
    border-color: #d90000;
    color: #050505;
    box-shadow: 0 0 0 4px rgba(217, 0, 0, .08);
}

.edc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.edc-field,
.edc-consent {
    margin: 0 0 18px;
}

.edc-field-full {
    margin-top: 2px;
}

.edc-field label {
    display: block;
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: -.02em;
    margin-bottom: 8px;
}

.edc-field label span,
.edc-consent strong {
    font-weight: 900;
}

.edc-field input,
.edc-field select,
.edc-field textarea {
    display: block;
    width: 100%;
    border: 1px solid #111;
    background: #fff;
    color: #050505;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 0;
    font: inherit;
    box-shadow: none;
}

.edc-field textarea {
    min-height: 160px;
    resize: vertical;
}

.edc-field-has-error label,
.edc-consent-has-error,
.edc-consent.edc-field-has-error {
    color: #b00000;
}

.edc-field-has-error input,
.edc-field-has-error select,
.edc-field-has-error textarea {
    border: 4px solid #d90000;
    background: #fffafa;
}


.edc-consent.edc-field-has-error {
    border: 4px solid #d90000;
    background: #fffafa;
    padding: 12px 14px;
}

.edc-field-error {
    display: block;
    margin-top: 8px;
    color: #b00000;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.35;
}

.edc-field input:focus,
.edc-field select:focus,
.edc-field textarea:focus {
    outline: 3px solid #111;
    outline-offset: 2px;
}

.edc-field-has-error input:focus,
.edc-field-has-error select:focus,
.edc-field-has-error textarea:focus {
    outline: 3px solid #d90000;
    outline-offset: 2px;
}

.edc-consent label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-weight: 500;
    line-height: 1.45;
}

.edc-consent input {
    margin-top: 4px;
}

.edc-webform-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 13px 22px;
    border: 1px solid #050505;
    background: #050505;
    color: #fff;
    font-weight: 800;
    letter-spacing: -.03em;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.edc-webform-button:hover,
.edc-webform-button:focus {
    background: #fff;
    color: #050505;
}

.edc-hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.edc-webform-admin-wrap .edc-admin-actions,
.edc-webform-admin-wrap .edc-status-tabs {
    margin: 16px 0;
}

.edc-status-tabs a {
    display: inline-block;
    padding: 8px 12px;
    margin-right: 6px;
    border: 1px solid #111;
    text-decoration: none;
    color: #111;
    background: #fff;
}

.edc-status-tabs a.is-active {
    background: #111;
    color: #fff;
}

.edc-status {
    display: inline-block;
    padding: 3px 8px;
    border: 1px solid #111;
    font-size: 12px;
    font-weight: 700;
}

.edc-status-new {
    background: #111;
    color: #fff;
}

.edc-status-contacted,
.edc-status-closed {
    background: #fff;
    color: #111;
}

.edc-inline-form {
    margin: 0 0 8px;
}

.edc-submissions-table details summary {
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 760px) {
    .edc-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .edc-webform-wrap {
        padding: 24px 18px;
    }
}

.edc-captcha {
    margin: 6px 0 18px;
    border: 1px solid #111;
    padding: 16px;
    background: #fff;
}

.edc-captcha-help {
    margin: -2px 0 12px;
    color: #444;
    font-size: .95rem;
    line-height: 1.45;
}

.edc-captcha-row {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 420px;
}

.edc-captcha-question {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid #111;
    background: #050505;
    color: #fff;
    font-weight: 900;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.edc-captcha input[type="text"] {
    max-width: 160px;
}

.edc-captcha.edc-field-has-error {
    border: 4px solid #d90000;
    background: #fffafa;
}

.edc-captcha.edc-field-has-error .edc-captcha-question {
    border-color: #d90000;
}

@media (max-width: 760px) {
    .edc-captcha-row {
        align-items: stretch;
    }

    .edc-captcha-question {
        min-width: 118px;
    }

    .edc-captcha input[type="text"] {
        max-width: none;
    }
}
