body {
    margin: 0;
    padding:0;
    background: #efefef;
    font-size: 16px;
    color: #777;
    font-family: sans-serif;
    font-weight: 300;
}
#login-box {
    position: relative;
    margin: 5% auto;
    height: 400px;
    width: 600px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
}
.left-box {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 40px;
    width: 300px;
    height: 400px;
}
button[type="submit"] {
    margin-bottom: 28px;
    width: 120px;
    height: 32px;
    background: #309286;
    border: none;
    border-radius: 2px;
    color: #fff;
    font-family: sans-serif;
    text-transform: uppercase;
    transition: 0.2s ease;
    cursor: pointer;
    margin-top: 10px;
}
button[type="submit"]:hover {
    background-color: rgb(224, 171, 36);
}
.right-box {
    position: absolute;
    top: 0px;
    right: 0px;
    box-sizing: border-box;
    padding: 40px;
    width: 300px;
    height: 400px;
    background-image: url('../img/belakangsmk.jpg');
    background-size: cover;
    background-position: center;
    margin-right: 340px;
    margin-top: 64px;
}
