body {
    background-color: #191546 !important;
    background-image: url('/Hub88/images/login/background.svg') !important;
    background-repeat: no-repeat !important;
    background-size: auto 100% !important;
    height: 100vh;
}

#floating-logo {
    position: fixed;
    z-index: -1;
    width: 258px;
    height: 64px;
    bottom: 80px;
    left: 80px;
}

#login-form {
    position: absolute;
    left: calc(50vw - 250px);
    top: calc(50vh - 450px / 2);
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    padding-top: 80px;
    box-shadow: 0px 30px 100px -20px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    width: 500px;
    height: 450px;
}

#login-form h1 {
    color: #000;
}

@media (max-width: 600px) {
    #floating-logo {
        position: absolute;
        bottom: unset;
        top: -82px;
        left: calc(45vw - 258px / 2);
    }

    #login-form {
        width: 90vw;
        left: 5vw;
    }
}