@media (max-width: 768px) {
    body.spa-page.login .page-content {
        padding: 0 10px;
    }
    .spa-login-container {
        width: 100%;
        margin: 60px auto;
        padding:20px;
    }
    .spa-login-title h2 .brand-name {
        font-size: 85px;
    }
    .spa-login-title h2 .login-text {
        font-size: 35px;
    }
    
    /* Mobile Header Styling */
    .spa-header-navigation .spa-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
    }
    
    .spa-nav-left {
        width: auto;
        order: 1;
    }
    
    .spa-nav-center {
        display: none!important;
    }
    
    .spa-nav-right {
        order: 2;
    }
    
    .spa-logo-name {
        align-items: center;
    }
    
    .spa-user-avatar {
        margin-right: 0;
    }
    
    .spa-user-name {
        display: none;
    }
    
    .spa-header-toggle {
        display: block!important;
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        padding: 5px;
    }
    
    /* Mobile Menu - Slide from right */
    .spa-mobile-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100%;
        background-color: #c25e61;
        padding: 0;
        z-index: 1000;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
        display: block;
    }
    
    .spa-mobile-menu.active {
        right: 0;
    }
    
    /* Mobile menu header */
    .spa-mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        background-color: rgba(0, 0, 0, 0.1);
    }
    
    .spa-mobile-user-info {
        display: flex;
        align-items: center;
    }
    
    .spa-mobile-user-name {
        color: #fff;
        font-weight: bold;
        margin-left: 10px;
        font-size: 16px;
    }
    
    .spa-mobile-close {
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        padding: 5px;
    }
    
    .spa-mobile-navigation {
        padding: 15px;
    }
    
    .spa-nav-menu {
        flex-direction: column;
    }
    
    .spa-nav-menu li {
        margin:  0;
    }
    
    .spa-nav-menu li a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
    }
    
    /* Overlay for mobile menu */
    .spa-mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
    
    .spa-mobile-overlay.active {
        display: block;
    }
    
    /* Prevent body scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    .spa-header-navigation .spa-logout-button {
        display: none;
    }
}