form{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-auto-flow: row;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    margin-left: 0%;
    margin-right: 5%;
    margin-top: 5%;
}

h1, fieldset, .fullwidth {
    grid-column: 1 / -1;
} 


.main-layout{
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    gap:20px;
    background-color: beige;
}
.content {
    padding: 20px;
}
.sidebar{
    flex: 0 0 15%;
    height: 100vh;
    background-image: url('yummy.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.left {
    background-position: left center;
}
.right {
    background-position: right center;
}

.content {
    flex: 1;
    padding: 0 20px;
}

.fieldset {
    grid-column: 1 / span 2;
    width: 100%;
    margin: 20px 0;
}