@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
* {
    box-sizing: border-box;
    /* border: 1px solid red; */
}

body {
    margin: 0;
    padding: 0;
    background-color: #f0f0f0 !important;
}

:root {
    --text-dark: #121212;
    --blue-color: #0A5EB0;
    --green-color: #1C4D35;
    --second-green: #1E741B;
    --price-color: #B52929;
    --orange-color: #FC7703;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-container {
    background-color: white;
    display: flex;
    width: 1000px;
    max-width: 100%;
    gap: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.179);
    border-radius: 5px;
}

.login-container .left {
    background: var(--green-color);
    padding-inline: 1rem;
    padding-block: 1rem;
    height: 100%;
    position: relative;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;

}

.login-container .bg {
    background-image: url(../assets/pattern.jpg);
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    opacity: 20%;

}

.login-container .left .wrapper {
    padding-inline: 2rem;
    padding-block: 3rem;
    font-family: "Poppins", serif;
    z-index: 2;
    position: relative;
}

.login-container .left h1 {
    font-weight: 700;
    padding-block-end: 3rem;
    font-size: 3.8rem;
    color: white;
}

.login-container .left p {
    color: #d0d0d0;
    font-weight: 300;
    font-size: 15px;
}

.smallest {
    font-size: 2.5rem;
    font-weight: 200;
}

.bolder {
    font-weight: 700;
}

.login-container .left img {
    filter: brightness(0) invert(1);
    width: 70px;
}

.login-container .right {
    padding-block: 1rem;
    padding-inline-end: 1rem;
    font-family: "Poppins", serif;
}

.right h1 {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 600;
}

form {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
    flex-wrap: wrap;
}

.right input {
    width: 100%;
    border-radius: 2px;
    padding-block: .6rem;
    outline: 0;
    transition: .3s ;
    font-size: .9rem;
}


.btn-aic {
    text-decoration: none;
    color: white;
    background-color: var(--blue-color);
    padding-inline: 4rem;
    width: 100%;
    padding-block: .7rem;
    text-align: center;
    border-radius: 2px;
    transition: .3s ease-in-out;
    margin-block-end: 1rem;
    outline: none;
    border: 0;
}

input:focus {
    outline: none;
    border: 2px solid #1c4d3535 !important;
    box-shadow: 0 0 0 4px rgba(0, 111, 19, 0.25) !important;
}

.btn-aic:hover {
    background-color: #054d94;
}

.button p {
    font-size: .9rem;
}

.button .register {
    color: var(--blue-color);
}

.line {
    width: 100%;
    height: .5px;
    background-color: grey;
    flex: 1;
}

.google-btn button {
    padding-block: .3rem;
    outline: 0;
    border: 0;
    text-decoration: none;
    background-color: white;
    border: .8px solid rgb(211, 211, 211);
    border-radius: 2px;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;

}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 5vw;  /* Ukuran elemen dalam vw untuk responsivitas */
    height: 5vw;
    animation: animate 25s linear infinite;
    bottom: -150px;
    background: #054c9427;

}

.circles li:nth-child(1) {
    left: 25%;
    width: 2vw; 
    height: 2vw;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 2;
    height: 2;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 3%;
    height: 3%;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 2vw;
    height: 2vw;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 5vw;
    height: 5vw;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 9vh;
    height: 9vh;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 12vh;
    height: 12vh;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 2vw;
    height: 2vw;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 2vw;
    height: 2vw;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 8%;
    height: 18%;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

.form-text {
    font-size: .73rem !important;
}

.switch {
    position: relative;
    display: inline-block;
    margin: 0 5px;
}

.switch>span {
    position: absolute;
    top: 8px;
    pointer-events: none;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    width: 50%;
    text-align: center;
}

.switch>span.on {
    left: 0;
    padding-left: 2px;
}

.switch>span.off {
    right: 0;
    padding-right: 2px;
}

.switch .check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
}

.switch .check-toggle+label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.switch input.check-toggle-round-flat+label {
    padding: 2px;
    width: 97px;
    height: 35px;
    background-color: var(--second-green);
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}

.switch input.check-toggle-round-flat+label:before,
.switch input.check-toggle-round-flat+label:after {
    display: block;
    position: absolute;
    content: "";
}

.switch input.check-toggle-round-flat+label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: var(--second-green);
    -webkit--moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
}

.switch input.check-toggle-round-flat+label:after {
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 45px;
    background-color: #fff;
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
}

.switch input.check-toggle-round-flat:checked+label:after {
    margin-left: 44px;
}

.switch img {
    width: 20px;
    height: 20px;
}

.invalid-feedback {
    font-size: .7rem !important;
}

@media (max-width: 768px) {
    .container {
        height: 100%;
    }

    .login-container .left {
        height: 100%;
    }

    .login-container .left .wrapper {
        padding-inline: .8rem;
        padding-block: 1rem;
    }
    
    .login-container .left h1 {
        padding-block-end: 1rem;
        font-size: 2.5rem;
    }
    
    .login-container .left p {
        font-size: .8rem;
    }
    
    .smallest {
        font-size: 2rem;
    }
    
    .login-container .left img {
        filter: brightness(0) invert(1);
        width: 60px;
    }
    
    .login-container .right {
        margin-block-start: 1rem !important;
        padding-block: 1rem;
        padding-inline-end: 1rem;
        padding-inline-start: 1rem;
    }
    
    .right h1 {
        text-align: center;
        font-size: 2.1rem;
        font-weight: 600;
        margin-block-end: 1.5rem;
    }
    
    input:focus {
        border: 1px solid var(--green-color) !important;
        box-shadow: 0 0 10px #1c4d35a3;
    }
    
    .btn-aic {
        text-decoration: none;
        color: white;
        background-color: var(--blue-color);
        padding-inline: 4rem;
        width: 100%;
        padding-block: .7rem;
        text-align: center;
        border-radius: 2px;
        transition: .3s ease-in-out;
        margin-block-end: 1rem;
        outline: none;
        border: 0;
    }

    .btn-aic:hover {
        background-color: #054d94;
    }
    
    .button p {
        font-size: .9rem;
    }

    .sign-google p {
        font-size: .8rem;
    }
    
    .button .register {
        color: var(--blue-color);
    }

    .circles {
        height: 120vh;
    }
    .circles li {
        width: 12vw; 
        height: 12vw;
    }

    .circles li:nth-child(1) {
        width: 30vw;
        height: 30vw;
    }

    .circles li:nth-child(6) {
        width: 18vw;
        height: 18vw;
    }

    .circles li:nth-child(7) {
        width: 25vw;
        height: 25vw;
    }

    .circles li:nth-child(10) {
        width: 25vw;
        height: 25vw;
    }

    .container {
        /* padding-block-start: 3rem !important; */
    }

    .multi-language-container {
        z-index: 10;
    }
}