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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f5f6fa;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 250px;
    background-color: #2c3e50;
    color: white;
    padding: 1rem;
    position: fixed;
    height: 100vh;
}

.sidebar-header {
    padding: 1rem 0;
    border-bottom: 1px solid #34495e;
    margin-bottom: 1rem;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav ul li {
    margin: 0.5rem 0;
}

.sidebar-nav ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.8rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.sidebar-nav ul li a:hover {
    background-color: #34495e;
}

.sidebar-nav ul li a i {
    margin-right: 10px;
    width: 20px;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: 250px;
}

.top-header {
    background-color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-search {
    display: flex;
    align-items: center;
}

.header-search input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 0.5rem;
}

.header-search button {
    background: none;
    border: none;
    cursor: pointer;
}

.header-user {
    display: flex;
    gap: 1rem;
}

.header-user span {
    cursor: pointer;
    font-size: 1.2rem;
}

/* Login Form Styles */
.login-container {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.login-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.form-group input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #3498db;
    outline: none;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password {
    color: #3498db;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #2980b9;
}

/* Hero Section */
.hero {
    width: 100%;
    max-height: 300px;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Content Section */
.content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    margin-left: 250px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 70px;
        padding: 0.5rem;
    }

    .sidebar-header h2 {
        display: none;
    }

    .sidebar-nav ul li a span {
        display: none;
    }

    .main-content {
        margin-left: 70px;
    }

    footer {
        margin-left: 70px;
    }
}
