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

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

.glow:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
}

input:focus + .fa-envelope,
input:focus + .fa-lock {
    color: #3b82f6;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-in;
}

@keyframes slideUp {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}