/* Warna dasar */
.btn-primary{
    background-color: #005596;
}
.form-submit label{
    color:#FFF;
    font-weight: bold;    
}
.form-control{
    margin-top: 5px;
}
@media only screen and (max-width: 768px) {
    /* For hp */
    body{
        background-image: url('../img/bg2.png');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
    } 
    #top-left{
        width: 150px;
        position: absolute;
        left:20px;
        top:30px;
    }
    #top-right{
        width: 100px;
        position: absolute;
        right:20px;
        top:30px;
    }
    #content{
        margin-top: 80px;
    }
}
@media only screen and (min-width: 768px) {
    /* For desktop */
    body{
        background-image: url('../img/bg2.png');
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
    } 
    #content{
        margin-top: 80px;
    }
    #top-left{
        width: 200px;
        position: absolute;
        left:40px;
        top:30px;
    }
    #top-right{
        width: 200px;
        position: absolute;
        right:40px;
        top:30px;
    }
}