/* Smooth transitions for interactive elements */
a, button {
    transition: all 0.15s ease;
}

/* Form inputs - consistent styling */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea,
select {
    font-family: 'Montserrat', sans-serif;
}

/* Flash message fade out */
.flash-message {
    animation: flashIn 0.3s ease;
}

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