/* Shared form styling: anti-bot honeypot + submission status banner */

/* Honeypot — kept out of view for humans, still submitted by naive bots.
   Not display:none (some bots skip those); pushed far off-screen instead. */
.ec-hp {
    position: absolute !important;
    left: -10000px !important;
    top: auto !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Post-submit banner (shown by scripts/forms.js) */
.form-status {
    display: none;
    margin: 0 0 20px;
    padding: 12px 16px;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.4;
}
.form-status-ok {
    display: block;
    background: #e6f4ea;
    border: 1px solid #4caf50;
    color: #1e4620;
}
.form-status-err {
    display: block;
    background: #fbeaea;
    border: 1px solid #d9534f;
    color: #611a15;
}
