        /* General Styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: url('/assets/Background.png');
            background-size: cover;
            background-position: center;        /* General Styles */
        }
         .login-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            padding: 20px;
            z-index: 1;
        }
        
        .login-box {
            position: relative;
            width: 420px;
            max-width: 90%;
            padding: 40px 36px;
            background: rgba(8, 28, 65, 0.65);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 32px;
            border: 1px solid rgba(70, 130, 255, 0.6);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(70, 130, 255, 0.3) inset, 0 0 20px rgba(70, 130, 255, 0.3);
            transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            text-align: center;
            animation: fadeSlideUp 0.6s ease-out;
        }
        .login-box:hover {
            background: rgba(8, 28, 65, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transform: translateY(-6px) scale(1.01);
            border-color: rgba(70, 130, 255, 0.9);
            box-shadow: 0 35px 55px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(70, 130, 255, 0.5) inset, 0 0 30px rgba(70, 130, 255, 0.4);
        }

        .logo img {
            width: 80px;
            height: auto;
            margin-bottom: 10px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            font-weight: 600;
        }

        input, select, button {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-sizing: border-box;
            background-color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        input[type="password"], input[type="email"], select {
            margin-top: 15px;
        }

        input:focus, select:focus {
            outline: none;
            border-color: rgba(30, 144, 255, 0.7);
            box-shadow: 0 0 8px rgba(30, 144, 255, 0.4);
            background-color: rgba(255, 255, 255, 0.95);
        }

        button {
            background-color: rgba(30, 92, 179, 0.8);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s;
            margin-top: 15px;
        }

        button:hover {
            background-color: rgba(22, 74, 150, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        a {
            color: white;
            text-decoration: none;
            display: block;
            margin-top: 15px;
            font-size: 14px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            transition: all 0.2s;
        }

        a:hover {
            text-decoration: underline;
            transform: translateY(-1px);
        }

        /* Checkbox styling */
        .remember-me {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            margin: 10px 0;
            color: white;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .remember-me input {
            width: auto;
            margin: 0;
            padding: 0;
            transform: scale(1.1);
            cursor: pointer;
        }

        .remember-me label {
            cursor: pointer;
            font-size: 14px;
        }

        /* Message styling */
        .alert-message {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 15px 20px;
            border-radius: 8px;
            font-weight: bold;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.5s ease-out;
            max-width: 400px;
            width: 90%;
        }

        .alert-error {
            background-color: #dc3545;
            border: 2px solid #ffc107;
            color: white;
        }

        .alert-success {
            background-color: #28a745;
            border: 2px solid #155724;
            color: white;
        }

        .alert-message::before {
            content: "⚠";
            font-size: 20px;
            font-weight: bold;
        }

        .alert-success::before {
            content: "✓";
        }

        @keyframes slideDown {
            from {
                top: -100px;
                opacity: 0;
            }
            to {
                top: 20px;
                opacity: 1;
            }
        }

        .alert-close {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            margin-left: auto;
            padding: 0;
            width: auto;
        }

        .alert-close:hover {
            background: none;
            transform: none;
            box-shadow: none;
            opacity: 0.8;
        }

        /* Password input wrapper */
        .password-wrapper {
            position: relative;
            width: 100%;
            margin: 15px 0;
        }

        .password-wrapper input {
            width: 100%;
            padding-right: 45px !important;
            margin: 0;
        }

        /* Hide browser's password manager icons */
        input[type="password"]::-ms-reveal,
        input[type="password"]::-ms-clear,
        input[type="password"]::-webkit-credentials-auto-fill-button,
        input[type="password"]::-webkit-contacts-auto-fill-button,
        input[type="password"]::-webkit-caps-lock-indicator {
            display: none !important;
            visibility: hidden !important;
            pointer-events: none !important;
            position: absolute !important;
            right: -9999px !important;
        }

        /* Remove browser autofill background color */
        input:-webkit-autofill,
        input:-webkit-autofill:hover,
        input:-webkit-autofill:focus,
        input:-webkit-autofill:active {
            -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.85) inset !important;
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.85) inset !important;
            -webkit-text-fill-color: #000 !important;
        }

        /* For Firefox */
        input:-moz-autofill {
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.85) inset !important;
        }

        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            font-size: 18px;
            width: auto;
            padding: 0;
            margin: 0;
            z-index: 10;
            display: block !important;
            visibility: visible !important;
        }

        .toggle-password:hover {
            color: #333;
            background: none;
            transform: translateY(-50%);
            box-shadow: none;
        }

        .password-wrapper input:placeholder-shown + .toggle-password {
            display: none !important;
        }

        .password-wrapper input:not(:placeholder-shown) + .toggle-password {
            display: block;
        }

        .password-wrapper input {
            padding-right: 40px !important;
        }

        /* Small adjustments for mobile responsiveness */
        @media (max-width: 600px) {
            .login-box {
                width: 90%;
                padding: 30px 20px;
                margin: 20px;
            }
            
            body {
                background-attachment: fixed;
            }
            
            .alert-message {
                width: 85%;
                padding: 12px 15px;
            }
        }

            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        .login-container {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .login-box {
            width: 320px;
            padding: 40px;
            background-color: rgba(30, 0, 222, 0.37);
            border-radius: 16px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .login-box:hover {
            background-color: rgba(30, 0, 222, 0.37);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
        }

        .logo img {
            width: 80px;
            height: auto;
            margin-bottom: 10px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        h2 {
            font-size: 24px;
            margin-bottom: 20px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            font-weight: 600;
        }

        input, select, button {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-sizing: border-box;
            background-color: rgba(255, 255, 255, 0.85);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        input[type="password"], input[type="email"], select {
            margin-top: 15px;
        }

        input:focus, select:focus {
            outline: none;
            border-color: rgba(30, 144, 255, 0.7);
            box-shadow: 0 0 8px rgba(30, 144, 255, 0.4);
            background-color: rgba(255, 255, 255, 0.95);
        }

        button {
            background-color: rgba(30, 92, 179, 0.8);
            color: white;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s;
            margin-top: 15px;
        }

        button:hover {
            background-color: rgba(22, 74, 150, 0.9);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        a {
            color: white;
            text-decoration: none;
            display: block;
            margin-top: 15px;
            font-size: 14px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            transition: all 0.2s;
        }

        a:hover {
            text-decoration: underline;
            transform: translateY(-1px);
        }

        /* Checkbox styling */
        .remember-me {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
            margin: 10px 0;
            color: white;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }

        .remember-me input {
            width: auto;
            margin: 0;
            padding: 0;
            transform: scale(1.1);
            cursor: pointer;
        }

        .remember-me label {
            cursor: pointer;
            font-size: 14px;
        }

        /* Message styling */
        .alert-message {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            padding: 15px 20px;
            border-radius: 8px;
            font-weight: bold;
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            animation: slideDown 0.5s ease-out;
            max-width: 400px;
            width: 90%;
        }

        .alert-error {
            background-color: #dc3545;
            border: 2px solid #ffc107;
            color: white;
        }

        .alert-success {
            background-color: #28a745;
            border: 2px solid #155724;
            color: white;
        }

        .alert-message::before {
            content: "⚠";
            font-size: 20px;
            font-weight: bold;
        }

        .alert-success::before {
            content: "✓";
        }

        @keyframes slideDown {
            from {
                top: -100px;
                opacity: 0;
            }
            to {
                top: 20px;
                opacity: 1;
            }
        }

        .alert-close {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            margin-left: auto;
            padding: 0;
            width: auto;
        }

        .alert-close:hover {
            background: none;
            transform: none;
            box-shadow: none;
            opacity: 0.8;
        }

        /* Password input wrapper */
        .password-wrapper {
            position: relative;
            width: 100%;
            margin: 15px 0;
        }

        .password-wrapper input {
            width: 100%;
            padding-right: 45px !important;
            margin: 0;
        }

        /* Hide browser's password manager icons */
        input[type="password"]::-ms-reveal,
        input[type="password"]::-ms-clear,
        input[type="password"]::-webkit-credentials-auto-fill-button,
        input[type="password"]::-webkit-contacts-auto-fill-button,
        input[type="password"]::-webkit-caps-lock-indicator {
            display: none !important;
            visibility: hidden !important;
            pointer-events: none !important;
            position: absolute !important;
            right: -9999px !important;
        }

        /* Remove browser autofill background color */
        input:-webkit-autofill,
        input:-webkit-autofill:hover,
        input:-webkit-autofill:focus,
        input:-webkit-autofill:active {
            -webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.85) inset !important;
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.85) inset !important;
            -webkit-text-fill-color: #000 !important;
        }

        /* For Firefox */
        input:-moz-autofill {
            box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.85) inset !important;
        }

        .toggle-password {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            cursor: pointer;
            color: #666;
            font-size: 18px;
            width: auto;
            padding: 0;
            margin: 0;
            z-index: 10;
            display: block !important;
            visibility: visible !important;
        }

        .toggle-password:hover {
            color: #333;
            background: none;
            transform: translateY(-50%);
            box-shadow: none;
        }

        .password-wrapper input:placeholder-shown + .toggle-password {
            display: none !important;
        }

        .password-wrapper input:not(:placeholder-shown) + .toggle-password {
            display: block;
        }

        .password-wrapper input {
            padding-right: 40px !important;
        }

        /* Small adjustments for mobile responsiveness */
        @media (max-width: 600px) {
            .login-box {
                width: 90%;
                padding: 30px 20px;
                margin: 20px;
            }
            
            body {
                background-attachment: fixed;
            }
            
            .alert-message {
                width: 85%;
                padding: 12px 15px;
            }
        }
