/* === LOGIN PAGE STYLES === */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        .outer-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
            gap: 20px;
        }

.login-container {
    background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent base */
    backdrop-filter: blur(10px); /* Blurs what's behind the box */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); /* Depth and contrast */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    padding: 40px;
    border-radius: 12px;
    width: 350px;
    text-align: center;
    color: white;
    transition: all 0.3s ease-in-out;
}

        .logo-container img {
            max-width: 180px;
            height: auto;
            filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
        }

        .login-container {
            background: rgba(0, 0, 0, 0.8);
            padding: 40px;
            border-radius: 10px;
            width: 350px;
            text-align: center;
            color: white;
        }

        .login-container h2 {
            margin-bottom: 20px;
            font-weight: 600;
        }

        input {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: none;
            background: rgba(120, 120, 120, 0.30);
            border-radius: 7px;
            font-size: 16px;
            color: #fff;
            letter-spacing: 1px;
            text-align: center;
        }

        .btn-login {
            background: #5A42F3;
            color: white;
            padding: 12px;
            border: none;
            width: 100%;
            border-radius: 5px;
            font-size: 18px;
            cursor: pointer;
            margin-top: 10px;
        }

        .btn-login:hover {
            background: #4b36c5;
        }

        .error-message {
            background: rgba(255, 0, 0, 0.7);
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .remember-container {
            display: flex;
            align-items: center;
            justify-content: left;
            gap: 10px;
            margin-top: 10px;
            font-size: 14px;
            color: #ddd;
        }

        .remember-container input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: #5A42F3;
            cursor: pointer;
        }

        .extra-links {
            margin-top: 15px;
            text-align: justify;
            text-justify: inter-word;
        }

        .extra-links a {
            color: #ddd;
            font-size: 8px;
            text-decoration: none;
        }

        @media (max-width: 500px) {
            .login-container {
                width: 90%;
                padding: 20px;
            }

            .logo-container img {
                max-width: 120px;
            }
        }
        /* Style for the password container */
.password-container {
    position: relative;
    width: 100%;
}


/* Style for the button */
.view-password-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #aaa;
}

.view-password-btn:hover {
    color: #555;
}


/* === LOGIN PAGE STYLES END === */