/* Custom styles that can't be achieved with Tailwind */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Animation for form submission */
@keyframes formSuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.form-success {
    animation: formSuccess 0.5s ease-in-out;
}

/* Custom checkbox styling */
input[type="checkbox"]:checked {
    background-color: #4f46e5;
    border-color: #4f46e5;
}