*{
    margin: 0;
    font-family: 'Poppins', sans-serif;
}
.container{
    display: flex;
    background-color: #ffffff;
    width: 100vw;
    height: 100vh;
    justify-content: center;
}
.container .left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    background: url(./baru97.png);
    background-repeat: no-repeat;
    background-size: 130% 100%;
    box-sizing: border-box;
    padding: 80px;
}
.img-wrapper{
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}
.img-01{
    width: 187px;
    height: 100%;
    margin-right: 40px;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
.img-02{
    width: 128px;
    height: 309px;
    margin-top: 30px;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}
.bounce-1 {
    animation-name: bounce-1;
    animation-timing-function: easy;
}
@keyframes bounce-1 {
    0%   { transform: scale(1,1)    translateY(0); }
    10%  { transform: scale(1.1,.9) translateY(0); }
    30%  { transform: scale(.9,1.1) translateY(-20px); }
    50%  { transform: scale(1,1)    translateY(0); }
    57%  { transform: scale(1,1)    translateY(-4px); }
    64%  { transform: scale(1,1)    translateY(0); }
    100% { transform: scale(1,1)    translateY(0); }
}
.bounce-2 {
    animation-name: bounce-2;
    animation-timing-function: linear;
}
@keyframes bounce-2 {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(20px); }
    100% { transform: translateY(0); }
}
.ht-title{
    color: #ffffff;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.ht-title h1{
    font-size: 46px;
}
.ht-title span{
    font-size: 20px;
}
.login-container{
    padding: 190px;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: 50%;
}
.container .right .login-container img{
    width: 210px;
}
.login-container h2{
    font-weight: 700;
    color: #0740F6;
    font-size: 34px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin: 10px 0 0 0;
}
.login-container span{
    color: #B0B0B0;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 30px;
    letter-spacing: 0.2em;
}
.login-form{
    margin-top: 20px;
}
.form-container{
    margin-top: 40px;
    position: relative;
}
.form-container span{
    position: absolute;
    width: 77px;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.form-container i{
    color: #0740F6;
    font-size: 18px;
    padding: 0 20px;
    border-right: 1px #B0B0B0 solid;
}
.form-rectangle{
    border: 2px #0740F6 solid;
    border-left: 7px #0740F6 solid;
    width: 423px;
    height: 50px;
    border-radius: 12px;
    align-items: center;
    display: flex;
    padding: 10px 10px 10px 97px;
    box-sizing: border-box;
    font-size: 14px;
    color: #B0B0B0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: 0.5s;
}
.form-rectangle:hover{
    border: 2px #4b72ec solid;
    border-left: 7px #4b72ec solid;
}
input:focus{
    border: 2px #4b72ec solid;
    border-left: 7px #4b72ec solid;
    box-shadow: 0px 4px 4px #4b72ec7d;
    outline: none;
}
input::placeholder{
    color: #B0B0B0;
}
.login-container .red-color{
    color: red !important;
}
.login-form .red-color{
    color: red !important;
}
.form-checkbox{
    margin-top: 10px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    color: #0740F6;
    font-size: 14px;
    position: relative;
    cursor: pointer;
    position: relative;
    padding-left: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.form-checkbox input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px #0740F6 solid;
}
.form-checkbox:hover input ~ .checkmark {
    box-shadow: 0px 4px 4px #4b72ec7d;
}
.form-checkbox input:checked ~ .checkmark {
    background-color: #ffffff;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.form-checkbox  input:checked ~ .checkmark:after {
    display: block;
}
.container .checkmark:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid #0740F6;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-login{
    background: #0740F6;
    color: #ffffff;
    border: 0;
    width: 300px;
    height: 50px;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.3em;
    background: #0740F6;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    cursor: pointer;
    transition: 0.1s;
}
.btn-login:focus{
    outline: none;
}
.btn-login:hover{
    width: 303px;
    background: #4b72ec;
    box-shadow: 0px 4px 4px #4b72ec7d;
}
/* HD */
@media screen and (max-width:  1366px) {
    .container .left{
        background-repeat: no-repeat;
        background-size: 130% 100%;
    }
    .img-wrapper {
        margin: 30px 0px 30px 0px;
    }
    .img-01{
        width: 160px;
        height: 100%;
        margin-right: 10px;
    }
    .img-02{
        width: 100px;
        height: 281px;
        margin-left: 10px;
    }
    .login-container {
        padding: 50px 80px;
    }
    
    .container .right .login-container img {
        width: 170px;
    }
    .login-container h2{
        font-size: 30px;
    }
    .login-container span{
        font-size: 14px;
    }
    .login-form{
        margin-top: 0;
    }
    .form-container span{
        width: 60px;
        line-height: 14px;
    }
    .form-container i{
        padding: 0px 12px;
    }
    .form-rectangle{
        width: 360px;
        height: 40px;
        padding: 10px 10px 10px 68px;
    }
    .btn-login{
        width: 250px;
        height: 40px;
    }
    .btn-login:hover{
        width: 253px;
    }
}
@media screen and (max-width:  800px) {
    body{
        display: none;
    }
    .container {
        display: block;
        height: 100%;
    }
    .container .left {
        width: 100%;
        /* margin-top: 550px; */
        display: none;
    }
    .login-container {
        width: 
        100%;
    }
    .form-rectangle {
        width: 100%;
    }
    .img-wrapper{
        margin: 90px 0px 30px 0px;
    }
    
}