* {
    font-family: system-ui;
}

#login-page-body {
    display: grid;
    grid-template-columns: 500px 1fr;
}

#login-page-body > .background {
    background-color: #191546 !important;
    background-image: url("/Lineplus/images/bg.png") !important;
    background-repeat: no-repeat !important;
    background-size: auto 100% !important;
    background-position: right;
    height: 100vh;
}

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

#login-form {
    background: #202452;
    padding: 40px;
    padding-top: 80px;
    box-shadow: 0px 30px 100px -20px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    height: 100vh;
    display: flex;
    align-items: center;
}

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

.form-label {
    margin-top: 1em;
    color: #fff;
}

.form-control {
    border: 1px solid #40444b;
}

.form-control:focus {
    background-color: #1c1c29;
}

.form-control:-webkit-autofill {
    -webkit-text-fill-color: #fff;
}

.form-control:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff;
}

input:-internal-autofill-selected {
    background-color: #1c1c29 !important;
}

.btn-primary,
.btn-info {
    background-color: #3aa1af !important;
    color: #fff !important;
    border: 0;
}

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

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