/* NESS Care - Core Styles */

body {
    background-color: #F6F7ED;
}

.slide-in {
    animation: slideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

button {
    transition: all 0.2s ease;
}

button:active {
    transform: scale(0.98);
}

input {
    transition: all 0.2s ease;
}