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

        body {
            font-family: 'Inter', sans-serif;
            background-image: url(images/login-bg.jpg);
            background-repeat: no-repeat;
            background-size: 100%;
            color: #ffffff;
            overflow-x: hidden;
        
            background-color: rgb(62, 90, 130);
        }

        .liquid-glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 1rem 0;
            transition: all 0.3s ease;
            background: rgba(130, 143, 153, 0.192);
            backdrop-filter: blur(20px);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(45deg, #ba9786, #a09995);
            -webkit-background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #4ecdc4;
        }

        .nav-menu a.active {
            color: #4ecdc4;
        }

        #sidebarToggle {
        position: fixed;
        top: 20px;
        left: 2px;
        z-index: 1000;
        padding: 10px;
        background-color: #91919162;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 5px;
        }

        .sidebar {
            position: fixed;
            top: 0;
            left: -250px;
            width: 250px;
            height: 250px;
            background-color: #91919162;
            transition: left 0.3s ease;
            border-radius: 5px;
        }

        .sidebar.open {
            left: 0;
        }

        .sidebar ul {
            list-style-type: none;
            margin: 0;
            padding: 20px;
            padding-left: 50px;
        }

        .sidebar a {
            color: white;
            text-decoration: none;
            display: block;
            padding: 10px;
        }

        .sidebar a:hover {
            background-color: #555;
        }
        
        .auth-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 25px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(45deg, #ba97869c, #a09995a9);
            color: white;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        /* Login Container */
        .login-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            margin-top: 120px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: calc(100vh - 120px);
        }

        .login-info {
            padding: 2rem;
            text-align: center;
        }

        .login-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: #fff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            padding-left: 2rem;

        }

        .login-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
            padding-left: 2rem;
        }

        .features-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .features-list i {
            color: #ecc47b;
            font-size: 1.2rem;
            
        }

        .login-form-container {
            padding: 2rem;
            max-width: 400px;
        }

        .form-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .form-group input {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .form-group input:focus {
            outline: none;
            border-color: #ffd16e77;;
            box-shadow: 0 0 0 3px rgba(205, 175, 78, 0.2);
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .remember-me {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .remember-me input[type="checkbox"] {
            width: auto;
            margin: 0;
        }

        .forgot-password {
            color: #ffce65b7;
            text-decoration: none;
            font-size: 0.9rem;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            background: linear-gradient(45deg, #ba97869c, #a09995a9);
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .divider {
            text-align: center;
            margin: 2rem 0;
            position: relative;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
        }

        .divider span {
            background: linear-gradient(135deg, #0f0f238f 0%, #1a1a2e5e 50%, #16213e4b 100%);
            padding: 0 1rem;
            color: rgba(255, 255, 255, 0.712);
        }

        .social-login {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-btn {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
        }

        .social-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ffd16e77;
        }

        .register-link {
            text-align: center;
            margin-top: 1.5rem;
        }

        .register-link a {
            color: #ffce65b7;
            text-decoration: none;
            font-weight: 500;
        }

        .register-link a:hover {
            text-decoration: underline;
        }

        /* Success/Error Messages */
        .message {
            padding: 1rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            text-align: center;
        }

        .message.success {
            background: rgba(78, 205, 84, 0.2);
            border: 1px solid #51e25177;;
            color: #51e25177;
        }

        .message.error {
            background: rgba(255, 107, 107, 0.2);
            border: 1px solid #ff6b6b;
            color: #ff6b6b;
        }

        /* Responsive Design */
        @media (max-width: 768px) {

            section h3 {
                font-size: 25px;
            }
            .login-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 100px;
            }
            
            .login-title {
                font-size: 2.5rem;
            }
            
            .form-title {
                font-size: 1.8rem;
            }
            
            .social-login {
                flex-direction: column;
            }
            .nav-menu {display: none;}
            .sidebar {display: none;}
            #sidebarToggle {display: none;}
            .btn-primary {display: block;}
            .features-list {
                    padding-left: 2rem;
                }
        }

        @media (max-width: 767px){
            body {
                background-image: url(images/login-bg-mob.jpg);
            }
            .nav-menu {display: none;}
            .sidebar {display: block;}
            #sidebarToggle {display: block;}
            .btn-primary {display: none;}

        }
            @media (min-width: 767px) {
                .features-list {
                    padding-left: 2rem;
                }
                .sidebar {display: none;}
                #sidebarToggle {display: none;}
                .btn-primary {display: block;}  
            }