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

* {
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f172a;
}

.glow {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.menu-btn {
    transition: all 0.3s ease;
}

.menu-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

input, select {
    outline: none;
    border: 2px solid transparent;
    transition: border 0.3s;
}

input:focus, select:focus {
    border-color: #3b82f6;
}

/* Animasi */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-section {
    animation: fadeIn 0.5s ease;
}
