html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
body {
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.container{
    padding-top: 150px;
    padding-bottom: 100px;
}
.header{
    margin: 20px;
}
.body{
    margin: 20px;
}
.footer{
    margin: 20px;
}
.img-header{
    width: 242px;
}
.img-footer{
    width: 277px;
}
.app-input::placeholder {
    color: #d2d2d2;
    font-size: 13px;
    opacity: 1;
    font-weight: 600;
}

.app-input::-webkit-input-placeholder { color: #00bcd4; }
.app-input:-ms-input-placeholder { color: #00bcd4; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: #000 !important;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

input:focus{
    outline: none;
    box-shadow: none;
}

.app-input{
    border: none;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: block;
    color: #8d8d8d;
    font-weight: 600;
    font-size: 13px;
    width: 256px;
    height: 39px;
    margin: 10px;
}
.input-wrapper {
    position: relative;
    margin: 10px auto;
}

.input-icon {
    position: absolute;
    top: 50%;
    left: 44px;
    transform: translateY(-50%);
    width: 18px;    /* sesuaikan ukuran icon */
    height: 18px;
}

.with-icon {
    padding-left: 40px;   /* jarak teks dari icon */
    box-sizing: border-box;
}
.btn-login{
    border: none;
    background: none;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: block;  
    width: 100px;
    height: 38px;
    margin: 15px;
    cursor: pointer;
}
@media (min-width:750px) {
    .container{
        padding-top: 3vw;
        padding-bottom: 0;
    }
    .img-header{
        width: 28vw;
    }
    .header{
        margin: 2vw;
    }
    .body{
        margin: 2vw;
    }
    .input-wrapper{
        margin: 1vw auto;
    }
    .input-wrapper{
        width: 40vw;
    }
    .with-icon{
        padding-left: 3.7vw;
    }
    .app-input::placeholder {
        font-size: 1.3vw;
    }
    .app-input {
        width: 26vw;
        height: 3.5vw;
        margin: 1vw;
        font-size: 1.3vw;
    }
    .btn-login{
        width: 8.5vw;
        height: 3.5vw;
        margin: 1.7vw;
    }
    .img-footer {
        width: 37vw;
    }
    .input-icon {
        left: 8vw;
        width: 2vw;
        height: 2vw;
    }
}