@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

input:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

button:hover {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

@media (max-width: 1024px) {
    .grid-cols-1.lg\\:grid-cols-2 {
        grid-template-rows: auto 1fr;
    }
}

@media (max-width: 640px) {
    .p-6.lg\\:p-12 {
        padding: 1.5rem;
    }
}

@media (min-width: 1024px) and (max-height: 768px) {
    .mb-8 {
        margin-bottom: 1.5rem;
    }
    
    .mb-6 {
        margin-bottom: 1rem;
    }
    
    .space-y-6 > * + * {
        margin-top: 1.25rem;
    }
    
    .p-6.lg\\:p-12 {
        padding: 2rem;
    }
}
 @keyframes slide-in {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .animate-slide-in {
            animation: slide-in 0.5s ease-out;
        }

        /* Mobile optimizations */
        @media (max-width: 640px) {
            .min-h-screen {
                min-height: 100vh;
                min-height: 100dvh; /* Dynamic viewport height for mobile */
            }
        }