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

            @keyframes fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(15px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            select:focus, input:focus, textarea:focus {
                box-shadow: 0 0 0 3px rgba(217, 27, 91, 0.3);
            }
            .bg-primary-lighter {
                background-color: rgba(217, 27, 91, 0.05);
            }
        