body {
    font-family: 'Inter', sans-serif;
}

/* Simple focus glow effect */
.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.4); /* Tailwind's blue-300 with opacity */
}

.form-button:focus {
   outline: none;
   box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.4);
}
