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/bg/bg-3.png');
        filter: blur(2px); /* Apply blur effect */
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        z-index: -1;
    }

.container {
    max-width: 450px;
    max-height: 490px;
    padding: 45px;
    /*   background: rgba(84, 102, 117,0.4);*/
    background: rgba(92, 116, 137,0.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    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: 0px;
    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;
    margin-left:11px;
}

.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: 10px;
    margin-top: 10px;
    width: 90%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: center;
    margin-left: 11px;
}


.fonterror {
    text-align: center;
    margin: 5px;
    padding: 2px;
    color: #f56c6c;
}

.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;
}

.loginimage {
    background-image: url(../../assets/media/bg/bg-3.png);
}