@import "tailwindcss";

@theme {
    --color-go-blue: #477ecf;
}

/* Add button styles */
input[type="submit"] {
    @apply bg-go-blue rounded px-4 py-2 text-white font-semibold;
}

input[type="text"] {
    @apply border border-gray-300 rounded px-4 py-2;
}
input[type="text"]:focus {
    @apply border-go-blue outline-none;
}