@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Outfit:wght@500;600;700&display=swap');

/* GLOBAL PREMIUM TYPOGRAPHY */
body, .app, .app-container {
    font-family: 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .page_title, .app-brand, .title, .username, .card-title {
    font-family: 'Outfit', sans-serif !important;
}

/* PREMIUM LOGIN PAGE - GLASSMORPHISM */
.app-login {
    background: linear-gradient(-45deg, #1e293b, #0f172a, #3b82f6, #1e293b) !important;
    background-size: 400% 400% !important;
    animation: gradientBG 15s ease infinite !important;
    min-height: 100vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.app-login .app-block {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    padding: 40px !important;
    width: 100% !important;
    max-width: 420px !important;
    margin: 0 auto !important;
}

.app-login .app-brand {
    font-size: 32px !important;
    margin-bottom: 24px !important;
    text-align: center !important;
}

.login_title_lineitem {
    display: none !important;
}

/* BUTTONS */
.btn {
    border-radius: 6px !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: none !important;
}

/* CHANGE PASSWORD BUTTON HIGHLIGHT */
.sidebar-nav > li.highlight-nav {
    margin-top: 24px !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

.sidebar-nav > li.highlight-nav > a {
    background: #10b981 !important;
    color: white !important;
    box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3) !important;
}

.sidebar-nav > li.highlight-nav > a .icon, .sidebar-nav > li.highlight-nav > a .title {
    color: white !important;
}

.sidebar-nav > li.highlight-nav > a:hover {
    background: #059669 !important;
}
