@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 effects */
input:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Button hover effects */
button:hover {
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

/* Google button hover effects */
a:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@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;
    }
}

/* Desktop optimization for 14-inch laptops */
@media (min-width: 1024px) and (max-height: 768px) {
    .mb-8 {
        margin-bottom: 1.5rem;
    }
    
    .mb-6 {
        margin-bottom: 1rem;
    }
    
    .space-y-5 > * + * {
        margin-top: 1rem;
    }
    
    .p-6.lg\\:p-12 {
        padding: 2rem;
    }
    
    .mt-6 {
        margin-top: 1rem;
    }
    
    .mt-5 {
        margin-top: 0.75rem;
    }
}