* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('https://a-static.besthdwallpaper.com/christmas-background-wallpaper-960x540-78346_43.jpg');
    background-size: cover; 
    background-repeat: no-repeat; 
    background-position: center; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
}

.login-container {
    background: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(10px); 
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h1 {
    margin-bottom: 30px;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #ff6347; 
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

button:hover {
    background-color: #ff4500; 
    transform: scale(1.05); 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); 
}

.forgot-password {
    margin-top: 10px;
}

.forgot-password a {
    color: #ff6347;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}
/* Add this at the bottom of login.css */
@media (max-width: 576px) {
    body {
        padding: 20px;
        background-size: cover;
        background-position: center;
    }
    
    .login-container {
        width: 100%;
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .input-group {
        margin-bottom: 15px;
    }
    
    input[type="text"],
    input[type="password"] {
        padding: 8px;
        font-size: 14px;
    }
    
    button {
        padding: 8px;
        font-size: 14px;
    }
    
    .forgot-password {
        margin-top: 8px;
    }
}
/* Mobile Sidebar Styles */
.hamburger-menu {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    font-size: 24px;
    color: white;
    z-index: 1001;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 50%;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100%;
    background-color: #333;
    z-index: 1002;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #222;
    color: white;
}

.mobile-nav-header .logo {
    color: #ff4757;
    font-weight: bold;
    font-size: 1.2rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-links li a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid #444;
    transition: background-color 0.3s;
}

.mobile-nav-links li a:hover {
    background-color: #444;
}

.mobile-nav-links li a.active {
    color: #ff4757;
}

/* Show sidebar when active */
.mobile-nav.active {
    left: 0;
}

/* Overlay when sidebar is open */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
}

.overlay.active {
    display: block;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    .nav-flex-row, .navbar .nav-links {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    /* Adjust header spacing for mobile */
    .section-intro header, .menu-header {
        padding-top: 60px;
    }
}