.contact-form-footer-shortcode {
    --as-red: #d71920;
    --as-red-dark: #b8141a;
    --as-text: #333333;
    --as-muted: #707070;
    --as-border: #dddddd;
    --as-soft: #f6f6f6;

    width: 100%;
    color: var(--as-text);
    font-family: Arial, Helvetica, sans-serif;
}

.contact-form-footer-shortcode *,
.contact-form-footer-shortcode *::before,
.contact-form-footer-shortcode *::after {
    box-sizing: border-box;
}

/* Container */

.contact-form-footer-shortcode contact-form-footer-container {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

/* Form Box */

.contact-form-footer-shortcode .as-box {
    border: 1px solid var(--as-border);
    border-top: 4px solid var(--as-red);
    background: #fff;
    padding: 22px;
}

/* Header */

.contact-form-footer-shortcode .as-kicker {
    margin: 0 0 6px;
    color: var(--as-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.contact-form-footer-shortcode .as-title {
    margin: 0;
    color: #2e2e2e;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
}

.contact-form-footer-shortcode .as-intro {
    margin: 8px 0 19px;
    color: var(--as-muted);
    font-size: 15px;
    line-height: 1.55;
}

/* Grid */

.contact-form-footer-shortcode .as-grid {
    display: grid;
    grid-template-columns: minmax(0,1.25fr) minmax(0,.75fr);
    gap: 14px;
}

/* Labels */

.contact-form-footer-shortcode label {
    display: block;
}

.contact-form-footer-shortcode .as-label {
    display: block;
    margin-bottom: 6px;
    color: var(--as-text);
    font-size: 13px;
    font-weight: 700;
}

/* Inputs */

.contact-form-footer-shortcode select,
.contact-form-footer-shortcode input[type="email"],
.contact-form-footer-shortcode input[type="text"] {
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 0;
    background: #fff;
    padding: 11px 12px;
    color: var(--as-text);
    font: inherit;
    font-size: 14px;
    min-height: 46px;
}

.contact-form-footer-shortcode select:focus,
.contact-form-footer-shortcode input:focus {
    outline: 2px solid rgba(215,25,32,.14);
    border-color: var(--as-red);
}

/* Dynamic Help */

.contact-form-footer-shortcode .as-help {
    display: none;
    margin: 13px 0 0;
    border-left: 3px solid var(--as-red);
    background: var(--as-soft);
    padding: 10px 12px;
    color: #555;
    font-size: 13px;
    line-height: 1.45;
}

.contact-form-footer-shortcode .as-subject {
    margin-top: 14px;
}

/* Footer */

.contact-form-footer-shortcode .as-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-top: 15px;
}

.contact-form-footer-shortcode .as-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    max-width: 610px;
    color: var(--as-muted);
    font-size: 12px;
    line-height: 1.45;
}

.contact-form-footer-shortcode .as-consent input {
    margin-top: 2px;
    flex: 0 0 auto;
}

/* Button */

.contact-form-footer-shortcode .as-button {
    flex: 0 0 auto;
    border: 0;
    background: var(--as-red);
    color: #fff;
    padding: 12px 21px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease;
}

.contact-form-footer-shortcode .as-button:hover {
    background: var(--as-red-dark);
}

/* Status */

.contact-form-footer-shortcode .as-status {
    min-height: 18px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
}

/* Responsive */

@media (max-width:650px) {

    .contact-form-footer-shortcode .as-box {
        padding: 18px;
    }

    .contact-form-footer-shortcode .as-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-footer-shortcode .as-bottom {
        display: block;
    }

    .contact-form-footer-shortcode .as-button {
        width: 100%;
        margin-top: 14px;
    }
}