/*
 * AURUM Consent Manager — public form styling.
 *
 * Honeypot uses off-screen positioning (not display:none/visibility:hidden,
 * which modern bot crawlers detect and skip). Form-result is announced via
 * aria-live in the markup; colors here are visual reinforcement only.
 */

.aurum-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.consents {
    border: 0;
    padding: 0;
    margin: 1em 0;
}

.consents > .consent-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    margin: 0.5em 0;
}

.consents > .consent-row label {
    line-height: 1.4;
}

.legal-notice {
    font-size: 0.9em;
    color: var(--light, #aab);
    padding: 0.75em 1em;
    border-left: 3px solid var(--gold2, #c9a85a);
    background: rgba(255, 255, 255, 0.03);
    margin: 1em 0;
}

.legal-notice a {
    color: var(--gold2, #c9a85a);
}

.form-result.success {
    color: #6c6;
}

.form-result.error {
    color: #c66;
}

.visually-hidden {
    position: absolute !important;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}
