/* NEPHO login screen style */
body.login {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between;
    background-color: #000 !important;
}
.login #login {
    width: 50% !important;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
body.login::before {
    content: "";
    display: block;
    width: 50%;
    background-image: url('background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}
.login h1 {
    text-align: center;
}
.login h1 a {
    display: block;
    margin: 0 auto 20px;
}