@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html,
body{
    width:100%;
    height:100%;
}

body{
    background:#fff; /* bukan hijau, supaya tidak bocor di sela panel */
    overflow:hidden;
}

/* ===============================
   CONTAINER
================================ */

.container{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/* ===============================
   GAMBAR KIRI
================================ */

.left-side{

    position:absolute;

    left:0;
    top:0;

    width:55%;
    height:100vh;

    overflow:hidden;
}

.left-side img{

    width:100%;
    height:100%;

    object-fit:cover;
    object-position:center;

    transform:scale(1.25);
}

/* ===============================
   PANEL FORM
================================ */

.right-side{
    position:absolute;

    top:0;
    right:0;

    width:52%;
    height:100vh;

    background:#fff;

    border-radius:90px 0 0 90px;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow-y:auto;      /* pengaman: kalau konten lebih tinggi dari layar, scroll di sini, bukan kepotong */
    padding:40px 0;

    z-index:10;

    box-shadow:-20px 0 40px rgba(0,0,0,0.05);
}

/* ===============================
   FORM CARD
================================ */

.reg-card{
    width:78%;
    max-width:520px;
}

.reg-card h1{

    text-align:center;

    font-size:30px;
    font-weight:600;

    line-height:1.3;

    margin-bottom:26px;
}

.input-group{
    margin-bottom:16px;
}

.reg-card label{

    display:block;

    margin-bottom:6px;

    font-size:14px;
    font-weight:600;
}

.reg-card input,
.reg-card select{

    width:100%;
    height:46px;

    border:1px solid rgba(0,0,0,0.3);
    border-radius:16px;

    padding:0 18px;

    font-family:'Poppins',sans-serif;
    font-size:14px;
    color:#000;

    background:#fff;

    transition:.25s;
}

.reg-card select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'><path d='M1 1l6 6 6-6' stroke='%23555' stroke-width='2' fill='none' fill-rule='evenodd'/></svg>");
    background-repeat:no-repeat;
    background-position:right 18px center;

    cursor:pointer;
}

.reg-card input::placeholder{
    color:#9d9d9d;
}

.reg-card input:focus,
.reg-card select:focus{
    outline:none;
    border-color:#2F8E58;
}

/* ===============================
   TOMBOL NEXT
================================ */

.btn-wrapper{
    display:flex;
    justify-content:flex-end;

    margin-top:20px;
}

.btn-next{

    width:150px;
    height:48px;

    border:1px solid rgba(0,0,0,0.3);
    border-radius:40px;

    background:#308F59;

    color:#fff;

    font-family:'Poppins',sans-serif;
    font-size:16px;
    font-weight:500;

    cursor:pointer;

    transition:.25s;
}

.btn-next:hover{
    background:#257349;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:1100px){

    .left-side{
        display:none;
    }

    .right-side{
        width:100%;
        border-radius:0;
    }

    .reg-card{
        width:90%;
    }

}