/* Login page background image */
.fi-simple-layout {
    background-image: url('/img/bridgewater.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    position: relative;
}

/* Add overlay for better readability */
.fi-simple-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

/* Ensure content is above overlay */
.fi-simple-layout > * {
    position: relative;
    z-index: 1;
}

/* Hide the heading text on login page, keep only logo */
.fi-simple-header-heading {
    display: none !important;
}

/* Style the login card */
.fi-simple-main {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-radius: 1rem !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

/* Logo sizing */
.fi-logo img {
    max-height: 80px;
    width: auto;
}
