
.widget-generateur {
    display: grid;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: auto 1fr;
    gap: 3rem;
    margin: 50px !important;
}

.widget-generateur label {
    color: #444;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
    font-family: 'Open Sans';
    font-weight: 600;
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 7px;
}

#widget-generateur-form {
    grid-area: 1 / 1 / 2 / 2;
    padding: 50px;
    box-shadow: 0px 18px 40px rgb(25 15 9 / 10%);
    border-radius: 10px;
}

#widget-generateur-form select, #widget-generateur-form input{
    width: 100%;
}

#widget-generateur-iframe {
    position: relative;
    overflow: hidden;
    grid-area: 1 / 2 / 2 / 3;
    box-shadow: 0px 18px 40px rgb(25 15 9 / 10%);
    border-radius: 10px;
    padding: 50px;
}

#widget-generateur-preview {
    border-radius: 10px;
    grid-area: 2 / 1 / 3 / 3;
    margin-bottom: 50px;
}

.form-color {
    background-color: white;
    border: 1px solid lightgray;
}

#text {
    background-color: white;
    border: 1px solid lightgray;
}

#widget-generateur-url-preview-content {
    position: relative;
}


@media (max-width: 1100px) {
    .widget-generateur {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }

    #widget-generateur-form {
        grid-area: 1 / 1 / 2 / 2;
    }

    #widget-generateur-iframe {
        grid-area: 2 / 1 / 3 / 2;
    }

    #widget-generateur-preview {
        grid-area: 3 / 1 / 4 / 2;
    }
}


#widget-generateur-copy {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 5px;
    right: 5px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}