* {
    box-sizing: border-box;
}

@keyframes animasi {
    100% {
        background-position: 25% 50%;
    }

}

.bg {
    background-image: url("background.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Poppins', sans-serif;
    animation: animasi 5s infinite alternate ease-in;
    margin: 0;
    /* infinit: berapa kali di ulang */
    /* alternate: direction animasi, alternate: bvergant5ian*/
}


.container {
    display: flex;
    flex-direction: row;
}

.left-card {
    flex: 65%;
}

.right-card {
    flex: 35%;
    background: red;
    padding: 30px;
    height: 100vh;
}




@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }

    .right-card {
        border-radius: 10px;
        margin: 30px 50px;


    }
}

.logo-login {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.form-input {
    background: #eee;
    border: 0;
    border-radius: 10px;
    width: 100%;
    height: 50px;
    padding: 12px;
    margin: 0 0 15px 0;
}

.form-input:focus {
    outline: none;
    border-color: #69b9fa;
    box-shadow: 0 0 10px #69b9fa;
}

.button {
    cursor: pointer;
    background: #39A7FF;
    border: 0;
    color: white;
    letter-spacing: 2px;
    font-weight: bolder;
    border-radius: 10px;
    width: 100%;
    height: 50px;
    margin: 0 0 18px 0;
}

.button:hover {
    background: none;
    border: 2px solid #69b9fa;
    color: #69b9fa;
    transition: background 1s;
}

h2 {
    font-weight: 60px;
    font-size: 25px;
}

a {
    color: #39A7FF;
    text-decoration: none;
    font-size: 15px;
}

a:hover {
    font-size: 16px;
    transition: font-size 1s;
}
