/* Using Inter font as the base font */
body {
    font-family: 'Inter', sans-serif;
}
/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}
/* Custom focus ring for better accessibility */
.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 89, 148, 0.5);
    border-color: #145994;
}

/* Logo Styling */
.logo {
    height: 3.5rem; /* 56px */
    width: auto;
}
