@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

.slide-up {
    animation: slideUp 0.4s ease-out;
}

input:focus {
    box-shadow: 0 0 0 2px rgba(51, 141, 255, 0.3);
}

.bar-animate {
    animation: barGrow 0.6s ease-out;
}

@keyframes barGrow {
    from { width: 0; }
}

::selection {
    background: rgba(51, 141, 255, 0.3);
}