/* Apply Inter font as the default */
body {
    font-family: 'Inter', sans-serif;
}
/* Custom styles for form elements in dark mode */
.form-input {
    width: 100%;
    background-color: #374151; /* bg-gray-700 */
    border: 1px solid #4B5563; /* border-gray-600 */
    color: #E5E7EB; /* text-gray-200 */
    border-radius: 0.5rem; /* rounded-lg */
    padding-top: 0.75rem; /* py-3 */
    padding-bottom: 0.75rem; /* py-3 */
    padding-left: 1rem; /* px-4 */
    padding-right: 1rem; /* px-4 */
}
.form-input::placeholder { color: #9CA3AF; /* placeholder-gray-400 */ }
.form-input:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    border-color: #0EA5E9; /* focus:border-sky-500 */
    --tw-ring-color: #0EA5E9;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}