
        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            height: 100%;
            font-family: Arial, sans-serif;
            overflow-x: hidden;
        }
        
        body {
            background: url(../image/background2.jpg);
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;
            background-size: cover;
            display: flex;
            position: relative;
        }
        
        /* Main Content Styles */
        .main-content {
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
            transition: all 0.5s ease;
        }
        
        .main-container {
            max-width: 900px;
            background-color: rgb(255, 255, 255);
            border-radius: 50px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        

        
        .site-logo {
            max-width: 350px;
        }
    
        
        p {
            margin-top: 5px;  /* Remove top margin from paragraph */
            margin-bottom: 15px;  /* Reduce bottom margin */
            line-height: 1.5;
        }
        
        /* Login Sidebar Styles */
        .login-sidebar {
            position: fixed;
            top: 0;
            right: -50%;
            width: 50%;
            height: 100%;
            background-color: #fff;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 30px;
            transition: right 0.5s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .login-sidebar.active {
            right: 0;
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        }
        
        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 2rem;
            cursor: pointer;
            color: #FF0000;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background-color 0.3s ease;
        }
        
        .close-btn:hover {
            background-color: rgba(215, 20, 68, 0.1);
        }
        
        .login-sidebar h3 {
            font-size: 1.8rem;
            margin-bottom: 50px;
            color:#FF0000;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }
        
        .form-group label {
            margin-top: 10px;
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #555;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background-color: #FF0000; /* Bright red to match logo */
            color: #ffffff;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 15px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn:hover {
            background-color: #E60000; /* Slightly darker when hovering */
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        
        .btn:active {
            transform: translateY(1px);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
        }
        
        .login-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 100;
        }
        
        .alt-login {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #777;
        }
        
        .divider {
            display: flex;
            align-items: center;
            margin: 20px 0;
        }
        
        .divider::before, .divider::after {
            content: "";
            flex: 1;
            border-bottom: 1px solid #ddd;
        }
        
        .divider span {
            padding: 0 10px;
            color: #777;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .main-container {
                padding: 30px 20px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            .login-sidebar {
                width: 100%;
                right: -100%;
            }
        }
        
        /* Overlay when sidebar is active */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 900;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .footer {
            position: fixed;
            bottom: 0;
            width: 100%;
            color: white;
            text-align: center;
            padding: 4px 0;
            font-size: 0.9rem;
            z-index: 100;
          }
          
          .footer p {
            margin: 0;
          }

          .footer-link {
            color: white;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .footer-link:hover {
            text-decoration: underline;
        }
          
          @media (max-width: 768px) {
            .footer {
              padding: 10px 0;
              font-size: 0.8rem;
            }
          }

          .site-logo {
            max-width: 350px; /* Adjust size as needed */
            margin-bottom: -10px;  /* Reduce space below logo */
            display: block;
            margin-left: auto;
            margin-right: auto;
        }