﻿/* booking.css */
.input-field {
	@apply w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-blue-500;
}

.label {
	@apply block text-sm font-medium text-gray-700 mb-1;
}

@keyframes fadeIn {
	from {
		transform: scale(0.96);
		opacity: 0;
	}

	to {
		transform: scale(1);
		opacity: 1;
	}
}

.animate-fadeIn {
	animation: fadeIn 0.25s ease-out;
}
