/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;&display=swap');

/* Reset CSS menghilangkan margin dan padding default disemua elemen */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Styling untuk elemen body */
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #927DFC;
}

/* styling untuk elemen utama wrapper */
.wrapper{
    width: 450px;
    height: 288px;
    padding: 30px;
    background: #fff;
    border-radius: 9px;
    transition: height 0.2s ease;
}

/* styling ketika wrapper dalam keadaan aktif */
.wrapper.active{
    height: 537px;
}

/* styling untuk kotak unggah gambar */
.wrapper .upload-box{
    height: 225px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 5px;
    border: 2px dashed #afafaf;
}

/* Menghilangkan border pada upload-box saat wrapper akftif */
.wrapper.active .upload-box{
    border: none;
}

/* styling untuk teks dalam upload-box */
.upload-box p{
    font-size: 1.06rem;
    margin-top: 20px;
}

/* menyembunyikan teks dalam upload-box saat aktif */
.wrapper.active .upload-box p{
    display: none;
}

/* styling gamba dalam uplloa-box saat aktif */
.wrapper.active .upload-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* stylling unutk konten dalam wrapper */
.wrapper .content{
    opacity: 0;
    margin-top: 28px;
    pointer-events: none;
}

/* stylling untuk konten saat wrapper aktif */
.wrapper.active .content{
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.5s 0.05s ease;
}

/* styling untuk baris dalam konten */
.content .row{
    display: flex;
    justify-content: space-between;
}

/* styling untuk kolom dalam baris */
.content .row .column{
    width: calc(100% / 2 - 15px);
}

/* styling untuk label dalam kolom */
.row .column .label{
    font-size: 1.06rem;
}

/* styling untuk input ukuran */
.sizes .column input{
    width: 100%;
    height: 49px;
    outline: none;
    margin-top: 7px;
    padding: 0 15px;
    font-size: 1.06rem;
    border-radius: 4px;
    border: 1px solid #aaa;
}

/* styling untuk input saat dalam focus */
.sizes .column input:focus{
    padding: 0 14px;
    border: 2px solid #927DFC;
}

/* styling unutk bagian checkbox */
.content .checkboxes{
    margin-top: 20px;
}

/* styling kolom dalam .checkboxes */
.checkboxes .column{
    display: flex;
    align-items: center;
}

/* styling untuk checkbox */
.checkboxes .column input{
    width: 17px;
    height: 17px;
    margin-right: 9px;
    accent-color: #927DFC;
}

/* styling tombol download */
.content .download-btn{
    width: 100%;
    color: #fff;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: 1.06rem;
    border-radius: 5px;
    padding: 15px 0;
    margin: 30px 0 10px;
    background: #927DFC;
    text-transform: uppercase;
}
