@keyframes fade-in {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.animate-fade-in {
    animation: fade-in 0.3s ease-out;
}

.validation-message {
    color: red;
    font-size: 0.9rem; /* optional */
    margin-top: 4px;   /* optional */
}

.dark .text-black {
    color: rgb(var(--copy-primary));
}

.dark .bg-white.text-black {
    color: rgb(var(--copy-black));
}
