/* Base Resets and Utilities */

/* Honeypot hidden field (spam trap) */
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Error message styling */
.error-message {
    display: none;
}

.error-message.visible {
    display: block;
    color: red;
    margin-top: var(--spacing-xs);
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
