.login-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;

    height: 100vh;
    background-color: #f0f2f5;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}


#login-image {
    background-image: url('../images/Menu/bulding\ menu.jpg');
    background-size: cover;
    position: relative;
}

#login-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(7px) brightness(0.7);

}

#login-image article {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;

}

#login-image h2 {
    font-size: 2rem;
    margin: 0.5rem 0;
    color: white
}

#login-image p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: white;
}
