 body {
            display: flex;
            margin: 0;
            padding: 0;
            height: 100vh;
            font-family: 'Poppins', sans-serif;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        body::before {
            content: "";
            position: absolute;
            top: 0;
            /* stroke-opacity:0.8;*/
            flood-opacity: 0.8;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../assets/media/misc/LogisticsManagement.png');
            filter: blur(10px); /* Apply blur effect */
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            z-index: -1;
        }

        .container {
            max-width: 340px;
            max-height: 400px;
            padding: 45px;
            background: rgba(84, 102, 117,0.4);
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            /*background: linear-gradient(135deg, #5f7282, #748491, #546675);*/
            border-radius: 8px;           
            border: none;   
        }

        .container h3 {
            text-align: center;
            font-size: 24px;
            margin-bottom: 10px;
            margin-top: 5px;
            font-weight: bold;
            color: #fff;
        }
        .Errorfont {
            color: #c51236;
            font-size:larger;
        }
        .container h2 {
            text-align: center;
            margin-bottom: 10px;
            margin-top: 5px;
            font-weight: bold;
            color: #fff;
        }

        .container h4 {
            text-align: center;
            font-size: 16px;
            margin-bottom: 5px;
            margin-top: 5px;
            color: #fff;
            font-weight: bold;
        }

        .container label {
            display: block;
            font-weight: bold;
            margin-bottom: 10px;
            color: #fff;
            position: center;
        }

        .container input[type="text"],
        .container input[type="password"] {
            width: 90%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 20px;
            margin-bottom: 20px;
        }

        .container button {
            width: 90%;
            padding: 10px;
            background-color: #0078D4;
            color: #ffffff;
            border: none;
            border-radius: 20px;
            margin-left: 11px;
            cursor: pointer;
            font-size: medium;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
        }

        .container button:hover {
            background-color: none;
        }

        .container .microsoft-button {
            background-color: #000;
            color: #fff;
            border: none;
            border-radius: 20px;
            padding: 8px;
            margin-top: 10px;
            width: 85%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            position: center;
            margin-left: 11px;
        }


.fonterror {
    font-size: smaller;
    text-align: center;
    margin: 5px;
    padding: 2px;
    color: #CD5C5C;
}

        .container .microsoft-button .microsoft-icon img {
            width: 20px;
            height: 20px;
            margin-left: 10px;
        }

        .container .microsoft-button .microsoft-text {
            color: #fff;
            text-align: center;
            flex-grow: 0.3;
            position: center;
            font-size: medium;
            margin-right: 20px;
        }

        .container .error-message {
            color: #ff5d5d;
            margin-top: 5px;
            margin-bottom: 5px;
        }
