/* Inline field errors + toast (no native alert/confirm) */
/* .form-field wraps each .inpt so errors don't become extra grid cells */
.form-field {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
}
.form-field-error {
    display: none;
    width: 100%;
    margin: 6px 0 0;
    padding: 0 2px;
    font-size: 12px;
    line-height: 1.4;
    color: #c62828;
}
.form-field-error.is-visible {
    display: block;
}
.form-field .inpt.has-error,
.form-field .sele_inpt.has-error,
.inpt.has-error,
.sele_inpt.has-error {
    border-color: #c62828 !important;
}

.eco-toast-wrap {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: min(920px, calc(100vw - 32px));
}
.eco-toast {
    pointer-events: auto;
    max-width: 100%;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.45;
    color: #fff;
    background: #1b2a4a;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.22);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease;
}
.eco-toast.is-show {
    opacity: 1;
    transform: translateY(0);
}
.eco-toast.is-success {
    background: #1f4d3a;
}
.eco-toast.is-error {
    background: #8b2e2e;
}

.cf-turnstile-wrap {
    margin: 12px 0 4px;
}
