body {
    font-family: 'Poppins', sans-serif;
    background-image: url(../img/back.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background: #ececec; */
}

/*------------ Login container ------------*/

.row {
    border-radius: 20px;
    padding: 0;
    margin: 0;
    /* background transprant */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
}

.box-area {
    width: 930px;
}

.left-box {
    /* border-radius: 20px; */
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.5);

    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;

}

.gambar {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;

}


/*------------ Right box ------------*/

.right-box {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0;
    padding: 10px 30px;
    /* background: goldenrod; */
    background-color: rgba(255, 255, 255, 0.5);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}



/* Input teksssss */

.input-form {
    margin-top: -60px;
}

.input-field {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px 0 10px;
}

.input {
    height: 45px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    outline: none;
    margin-bottom: 20px;
    color: #151518;
}

.input-box .input-field label {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: .5s;
}

.input-field .input:focus~label {
    top: -10px;
    font-size: 13px;
}

.input-field .input:valid~label {
    top: -10px;
    font-size: 13px;
    color: #a6ff00;
}

.input-field .input:focus,
.input-field .input:valid {
    border-bottom: 1px solid #743ae1;
}

.form-select {
    background-color: rgba(255, 255, 255, 0.3);
}


.submit {
    border: none;
    outline: none;
    height: 45px;
    background: #ececec;
    border-radius: 5px;
    transition: .4s;
}

.submit:hover {
    background: rgba(37, 95, 156, 0.9);
    color: #fff;
}


/*------------ For small screens------------*/

@media only screen and (max-width: 768px) {

    .box-area {
        margin: 10 10px;

    }

    .left-box {
        height: 100px;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0px;
        overflow: hidden;
    }

    .right-box {
        padding: 30px 30px;
        border-top-right-radius: 0px;
        border-bottom-left-radius: 20px;
    }

    .header-text {
        margin-bottom: 30px;
    }

    .header-text h3 {
        margin-top: -10px;
    }

    .header-text .anda {
        margin-bottom: 40px;
    }


    .text {
        position: absolute;
        top: 70%;
        text-align: center;
    }

    .text p,
    i {
        font-size: 17px;
    }

    .row {
        max-width: 420px;
        width: 100%;
    }


}



/*------------ For small screens------------*/

@media only screen and (max-width: 992px) {



    .right-box {
        padding: 30px 10px;
    }

    .gambar {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
    }

    .header-text {
        margin-bottom: 30px;
    }

    .header-text h3 {
        margin-top: -10px;
    }

    .header-text .anda {
        margin-bottom: 40px;
    }




}