        :root {
            --primary-color: #74223C;
            --primary-dark: #5C1B31;
            --primary-light: #8E3C54;
            --secondary-color: #2c3e50;
            --accent-color: #3498db;
            --light-bg: #f8f9fa;
            --dark-text: #212529;
            --light-text: #f8f9fa;
        }
        
        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        .header {
            background: #FFFFFF;
            padding: 25px 0;
            text-align: center;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .header h1 {
            margin: 0;
        }
        
        .header h1 a {
            text-decoration: none;
            color: inherit;
        }
        
        .header-logo {
            max-width: 300px;
            height: auto;
            margin: 0 auto;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .header-logo:hover {
            transform: scale(1.03);
        }
        
        .menu-bar {
            background: var(--secondary-color);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }
        
        .menu-bar .nav-link {
            color: var(--light-text);
            font-weight: 500;
            padding: 0.8rem 1.2rem;
            transition: all 0.3s ease;
        }
        
        .menu-bar .nav-link:hover {
            color: var(--accent-color);
            transform: translateY(-2px);
        }
        
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .dropdown-item {
            transition: all 0.2s ease;
        }
        
        .dropdown-item:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateX(5px);
        }
        
        .content {
            flex: 1;
            display: flex;
            margin-top: 30px;
            padding-bottom: 30px;
        }
        
        .left-section {
            flex: 3;
            margin-right: 25px;
        }
        
        .right-sidebar {
            flex: 1;
        }
        
        .card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
            margin-bottom: 25px;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .card-header {
            border-bottom: none;
            padding: 1.25rem 1.5rem;
        }
        
        .bg-dark {
            background-color: var(--secondary-color) !important;
        }
        
        .sidebar-card {
            margin-bottom: 25px;
        }
        
        footer {
            background: var(--secondary-color);
            color: var(--light-text);
            text-align: center;
            padding: 20px 0;
            margin-top: 40px;
        }
        
        footer p {
            margin: 0;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 8px;
            display: inline-block;
            font-size: 16px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(116, 34, 60, 0.2);
        }
        
        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(116, 34, 60, 0.3);
        }
        
        a {
            color: var(--primary-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: var(--primary-light);
        }
        
        blockquote {
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
            font-style: italic;
            color: #555;
        }
        
        .list-unstyled li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            transition: all 0.2s ease;
        }
        
        .list-unstyled li:hover {
            padding-left: 5px;
            border-bottom-color: var(--primary-light);
        }
        
        .list-unstyled li:last-child {
            border-bottom: none;
        }
        
        @media (max-width: 768px) {
            .content {
                flex-direction: column;
            }
            
            .left-section {
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .menu-bar .nav-link {
                padding: 0.5rem 1rem;
            }
        }
        /* Add these to your existing css.txt (style.css) */
.card {
    max-width: 600px;
    margin: 0 auto;
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(116, 34, 60, 0.25);
}

.alert {
    border-radius: 8px;
}

.password-strength {
    height: 5px;
    margin-top: 5px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.password-strength span {
    display: block;
    height: 100%;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.password-strength.weak span {
    width: 30%;
    background-color: #ff4444;
}

.password-strength.medium span {
    width: 60%;
    background-color: #ffbb33;
}

.password-strength.strong span {
    width: 100%;
    background-color: #00C851;
}