/* =========================
   GLOBAL RESPONSIVE SYSTEM
========================= */

*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}

/* CREATE POST AREA */

#createBanner{
    width:100%;
    padding:16px;
}

#createBanner .card{
    width:100%;
    max-width:800px;

    margin:0 auto;
}

/* INPUT */

#nameInput{
    width:100%;
}

/* BUTTONS */

.ui-create-btn,
.ui-reminder-btn{
    width:100%;
}

/* TEMPLATE PREVIEW */

.template-preview img{
    width:100%;
    display:block;
}


@media (max-width:767px){

.photo-upload-card{
    display:grid;
    grid-template-columns:140px 1fr;
    gap:20px;
    align-items:center;
}
    .photo-preview-wrapper{
        justify-content:center;
    }

    .preview-container{
        width:120px;
        height:120px;
    }

}

@media (min-width:768px) and (max-width:1023px){

    #createBanner .card{
        max-width:700px;
    }

}

@media (min-width:1024px){

    #createBanner .card{
        max-width:800px;
    }

}