/* Import global styles */
@import url('style.css');

/* Full viewport background image with overlay */
.bg-img{
    min-height: 100vh;
    min-width: 100vw;

    /* Gradient overlay on top of background image */
    background: linear-gradient(
        var(--overlay), 
        var(--overlay)
    ), 
    url('../imgs/login.jpg');

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}