* { -webkit-tap-highlight-color: transparent; }
body { margin: 0; background: #f0fdf4; }

@keyframes slidein { from { transform: translateX(-100%); } to { transform: translateX(0); } }
.animate-slidein { animation: slidein 0.25s ease-out; }

@keyframes bounce-slow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.animate-bounce-slow { animation: bounce-slow 2s ease-in-out infinite; }

::-webkit-scrollbar { height: 6px; width: 6px; }
::-webkit-scrollbar-thumb { background: #6ee7b7; border-radius: 6px; }

input, textarea, button { font-family: 'Nunito', sans-serif; }
input:focus, textarea:focus { outline: 2px solid #6ee7b7; outline-offset: 0; }