/* Login page custom styles */
.fi-simple-layout {
    background-image: url('/img/metalcardbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Add overlay to improve readability */
.fi-simple-layout::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

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

/* Make the login card stand out more */
.fi-simple-main {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Dark mode support */
.dark .fi-simple-main {
    background: rgba(15, 23, 42, 0.95) !important;
}

/* Make logo larger - targets the brand logo */
.fi-simple-header .fi-logo,
.fi-simple-header img {
    height: 5rem !important;
    width: auto !important;
    max-height: 5rem !important;
}
