@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

#vanta-bg {
    position: absolute;
    z-index: 0;
}

main {
    position: relative;
    z-index: 1;
}

input, select {
    transition: all 0.3s ease;
}

input:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s infinite;
}