@media screen and (max-width: 768px) {
    .create-ad-wrapper, .create-ad-image-wrapper {
        width: 85dvw;
        height: fit-content;
        margin-inline: auto;
        background-color: white;
        box-shadow: 0 0 0.1dvh grey;
        border-radius: 1.5dvw;
        margin-block: 10vh;
        display: flex;
        flex-direction: row;
    }

    .advertisement-form .form-input {
        width: 100%;
    }

    .advertisement-form #ad-desc {
        width: 100%;
    }

    .create-input-container {
        width: 60dvw;
    }

    .form-gradient-create-ad {
        width: 15vw;
        min-height: 100%;
        background: linear-gradient(40deg,rgba(154, 194, 216, 0.818),rgb(154, 155, 237),rgb(212, 144, 237));
        border-top-left-radius: 1.5dvw;
        border-bottom-left-radius: 1.5dvw;
    }

    #image-upload-btn {
        border: none;
        background-color: rgb(182,157,230);
        border-radius: 10vh;
        transition: 0.3s;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        font-weight: bold;
        cursor: pointer;
        width: fit-content;
        padding-inline: 4vw;
        padding-block: 1vh;
        color: white;
        margin: 2dvh auto 4dvh auto;
    }

    #upload-images-img {
        width: 5dvw;
        height: 5dvw;
        display: block;
    }
}
