@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #fff !important;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.parent-login {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(255, 255, 255) !important;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
    width: 65%;
}
.img-login {
    width: 50%;
    border-radius: 10px;
}
.login-form {
    display: grid;
    padding: 0 15px 0 50px;
    width: 100%;
}
.logo-sc {
    width: 50%;
    margin-bottom: 25px;
    justify-self: center;
}
.btn-login {
    /* margin-top: 20px; */
    background-color: #05469a;
    color: white;
    border: 1px solid transparent;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.btn-login-google-2 {
    display: none;
}

/* .btn-login-google {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    row-gap: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    background-color: white;
    border: 1px solid transparent;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
} */
.btn-login-google {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.btn-login-google a {
    font-size: 16px;
    color: #05469a;
    font-weight: 700;
    background-color: #fff;
}
.btn-login-google img {
    width: 25px;
    height: 25px;
}
.text-forgot-password {
    color: rgb(199, 0, 0);
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
}
.text-signup {
    color: #009dd0;
    cursor: pointer;
}
.text-no-account {
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    margin-top: 20px;
}
.parent-login-with-email {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: rgb(226, 226, 226);
    margin-top: 20px;
    margin-bottom: 20px;
}
.garis-login {
    width: 50px;
    border: 1px solid rgb(226, 226, 226);
    color: rgb(226, 226, 226);
}
.img-login-mobile {
    display: none;
}

/* RESPONSIVE */
@media only screen and (max-width: 575.98px) {
    .container {
        height: auto;
    }
    .parent-login {
        width: 100%;
        box-shadow: none;
        place-self: baseline;
    }
    .img-login {
        display: none;
    }
    .img-login-mobile {
        display: block;
        width: 100%;
    }
    .parent-login-with-email {
        display: none;
    }
    .logo-sc {
        display: none;
    }
    .container {
        display: grid;
        place-items: center;
    }
    .login-form {
        padding: 40px;
    }
    .btn-login-google {
        margin-top: 0;
        display: none;
    }
    .text-forgot-password {
        font-size: 13px;
        margin-top: 5px;
    }
    .btn-login-google-2 {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-family: "Montserrat", sans-serif;
        font-weight: 600;
        background-color: white;
        border: 1px solid transparent;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        margin-top: 50px;
        margin-bottom: 20px;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1119.98px) {
    .parent-login {
        width: 100%;
    }
}
