/* CF7 JavaScript Warning */

/* JS not enabled warning, works with a class on the document via js */
.cf7-js-warning {
    display: block;
}
.js .cf7-js-warning {
    display: none;
}

.cf7-js-warning {
    display: block;
    padding: 14px 16px;
    margin-bottom: 16px;

    border-radius: 8px;
    border: 1px solid #f5c2c7;
    background: #fff5f5;
    color: #842029;

    font-size: 14px;
    line-height: 1.5;

    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* Hide when JS is enabled */
.js .cf7-js-warning {
    display: none;
}

/* Optional: nicer link styling inside */
.cf7-js-warning a {
    color: #842029;
    text-decoration: underline;
    font-weight: 500;
}

.cf7-js-warning a:hover {
    text-decoration: none;
}