@media only screen and (max-width: 468px) {

    /* For Mobile */
    .bg-login {
        font-family: 'Inter';
        background: rgb(10, 10, 10);
        background-image: url("/assets/img/user/bg-login.png");
        background-repeat: no-repeat;
        background-size: cover;
    }

    .bg-home {
        font-family: 'Inter';
        background: rgb(10, 10, 10);
        background-image: url("/assets/img/user/bg-home.png");
        background-repeat: no-repeat;
        background-size: cover;
        height: 900px;
    }
    
    .bg-form {
        font-family: 'Inter';
        background: rgb(10, 10, 10);
        background-image: url("/assets/img/user/bg-form.png");
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media only screen and (max-width: 8600px) and (min-width: 468px) {

    /* For Dekstop */
    body {
        font-family: 'Inter';
        background: rgb(10, 10, 10);
        background-repeat: no-repeat;
        background-size: cover;
        color: #012E59; 
    }

    #app-login {
        margin: auto;
        width: 390px;
        height: 800px;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("/assets/img/user/bg-login.png");
    }

    #app-home {
        margin: auto;
        width: 390px;
        height: 900px;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("/assets/img/user/bg-home.png");
    }

    #app-form {
        margin: auto;
        width: 390px;
        height: 1590px;
        background-repeat: no-repeat;
        background-size: cover;
        background-image: url("/assets/img/user/bg-form.png");
    }
}
