/*
 * email.css — Ops UI Library: EmailField
 * Uses CSS variables from index.html for automatic dark/light theme support
 */

/* Error state on the native input */
.ef-error {
    border-color: #ef4444 !important;
    outline: none;
}

.ef-error:focus {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.15);
}
