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

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

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #927dfc;
}

.wrapper {
    width: 450px;
    height: 288px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;

    transition: height 0.2s ease;
}

.wrapper.active {
    height: 537px;
}

.wrapper .upload-box {
    height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 4px;
    border: 2px dashed #afafaf;
    cursor: pointer;
}

.wrapper.active .upload-box {
    border: none;
}

.upload-box i {
    font-size: 48px;
    color: #927dfc;
}

.wrapper.active .upload-box i {
    display: none;
}

.upload-box img {
    display: none;
}

.wrapper.active .upload-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.upload-box p {
    font-size: 1.06rem;
    margin-top: 20px;
}

.wrapper.active .upload-box p {
    display: none;
}

.wrapper .content {
    margin-top: 28px;

    opacity: 0;
    pointer-events: none;
}

.wrapper.active .content {
    opacity: 1;
    pointer-events: auto;

    transition: opacity 0.5s 0.05s ease;
}

.content .row {
    display: flex;
    justify-content: space-between;
}

.content .row .column {
    width: calc(100% / 2 - 15px);
}

.row .column label {
    font-size: 1.06rem;
}

.sizes .column input {
    width: 100%;
    height: 49px;
    padding: 0 15px;
    margin-top: 7px;
    font-size: 1.06rem;
    outline: none;
    border-radius: 4px;
    border: 1px solid #aaa;
}

.sizes .column input:focus {
    padding: 0 14px;
    border: 2px solid #927dfc;
}

.content .checkboxes {
    margin-top: 20px;
}

.checkboxes .column {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkboxes .column input {
    width: 17px;
    height: 17px;
    accent-color: #927dfc;
}

.content .download-btn {
    width: 100%;
    padding: 15px 0;
    margin: 30px 0 10px;
    color: #fff;
    border: none;
    border-radius: 4px;
    outline: none;
    background-color: #927dfc;
    font-size: 1.06rem;
    text-transform: uppercase;
    cursor: pointer;
}