@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8fafc;
}

.gradient-bg {
    background: linear-gradient(135deg, #e48852 0%, #ac40a6 100%);
}

.input-focus:focus {
    box-shadow: 0 0 0 3px rgba(150, 45, 144, 0.3);
}

.btn-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(150, 45, 144, 0.3);
}

.transition-all {
    transition: all 0.3s ease;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}