div.main {
    display: grid;
    position: relative;
    place-items: center;
    min-height: 100vh;
    z-index: 100;
}

[class*="fontawesome-"]:before {
    font-family: 'FontAwesome', sans-serif;
}

/* ---------- GENERAL ---------- */
* {
    box-sizing: border-box;
    margin: 0px auto;

    &:before,
    &:after {
        box-sizing: border-box;
    }
}

body {
    width: 100%;
    color: #606468;
    font: 87.5%/1.5em 'Open Sans', sans-serif;
    margin: 0;
    background: url(background_portrait.png) center top no-repeat;
    background-size: cover;
}

body::after {
    content: " ";
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    background: rgba(255, 255, 255, .5);
}

h1 {
    font-size: 32px;
    margin: 30px 0;
    line-height: 1.25em;
    font-weight: bold;
    color: #051A35;
    text-align: center;
}

.nohover {
    cursor: default;
}

a {
    color: #888;
    text-decoration: none;
    transition: .25s;
}

a:hover {
    color: #ccc;
}

input,
select {
    border: none;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    padding: 0;
    -webkit-appearance: none;
}

p {
    line-height: 1.5em;
}

.clearfix {
    *zoom: 1;

    &:before,
    &:after {
        content: ' ';
        display: table;
    }

    &:after {
        clear: both;
    }
}

.row {
    display: block !important;
}

.panel-kiri {
    height: 100vh;
    padding: 0;
}

/* ---------- LOGIN ---------- */
#stypgr {
    float: right;
}

#login form {
    width: 250px;
}

#login {
    margin: 30px 0;
    border-left: 1px solid #fff;
    padding: 0px 22px;
}

#login .kotak-login {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    font-size: 50px;
    line-height: 125px;
    background: url(background.png) center center no-repeat;
    background-size: cover;
}

#login form span.la {
    background-color: #fff;
    border-radius: 3px 0px 0px 3px;
    color: #000;
    display: block;
    float: left;
    height: 40px;
    font-size: 24px;
    line-height: 40px;
    text-align: center;
    width: 50px;
    border: 1px solid #ced4da;
    border-right: none;
}

#login form input {
    height: 40px;
    border: 1px solid #ced4da;
    border-left: 0;
}

fieldset {
    padding: 0;
    border: 0;
    margin: 0;
}

#login form input[type="text"],
input[type="password"] {
    background-color: #fff;
    border-radius: 0px 3px 3px 0px;
    color: #000;
    margin-bottom: 1em;
    padding: 0 16px;
    width: 200px;
}

#login form input[type="submit"] {
    width: 100%;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #BE672E;
    color: #eee;
    font-weight: bold;
    /* margin-bottom: 2em; */
    text-transform: uppercase;
    padding: 10px 15px;
    border: solid 1px #DD8B56;
}

#login>p {
    text-align: center;
}

#login>p span {
    padding-left: 5px;
}

@media screen and (max-width: 680px) {
    #stypgr {
        float: none !important;
    }

    .headerlogin {
        float: none !important;
    }
}

@media screen and (min-width: 1200px) {
    body {
        background: none;
    }

    h1 {
        font-size: 2.5rem;
        text-align: left;
    }

    .row {
        display: flex !important;
    }

    .panel-kanan {
        height: 100vh;
    }

    #login {
        margin: calc(50vh - 220px) auto 0;
        border-left: 1px solid #fff;
        padding: 0px 22px;
    }
}