/* BHRFAZ Core App Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #2563eb; /* Institutional Blue */
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f8fafc;
}

/* Fix for broken Filament layout spacing */
.fi-main {
    padding: 2rem;
}

/* Ensure the login card stays centered and clean */
.fi-center-hub {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Standardizing the BHRFAZ shadows */
.shadow-institutional {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}
