/* Content full width */
main.fi-main[class*="fi-width-"] {
    max-width: 100% !important;
}

/* Sidebar schmaler */
.fi-sidebar {
    width: 13rem !important;
}
.fi-main-ctn-sidebar-open {
    margin-inline-start: 13rem !important;
}

/* Login page styling */
.fi-simple-layout {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1e293b 100%);
    min-height: 100dvh;
}

.fi-simple-main-ctn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100dvh;
    padding: 1rem;
}

.fi-simple-main {
    width: 100%;
}

.fi-simple-page-content {
    background: white;
    border-radius: 1rem;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
}

:is(.dark) .fi-simple-page-content {
    background: #1e293b;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.fi-simple-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.fi-simple-header-heading {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #0f172a;
}

:is(.dark) .fi-simple-header-heading {
    color: #f1f5f9;
}

.fi-simple-header-subheading {
    color: #64748b;
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.fi-simple-header-logo {
    margin-bottom: 1rem;
}

/* Brand logo text styling */
.fi-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

/* Login button */
.fi-simple-page .fi-btn-primary {
    border-radius: 0.625rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.2s ease;
}

.fi-simple-page .fi-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Input fields */
.fi-simple-page .fi-input-wrp {
    border-radius: 0.625rem;
    transition: all 0.2s ease;
}

.fi-simple-page .fi-input-wrp:focus-within {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
