main {
    display: flex;
    justify-content: center;
    background-color: initial;
}

main > div {
    display: flex;
    justify-content: space-between;
    background-color: var(--colorMain);
    overflow: clip;
    width: 1000px;
    border-radius: var(--radius);
}

form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30%;
    min-width: 250px;
    min-height: 250px;
    gap: 15px;
}

form > div {
    display: flex;
    flex-direction: column;
}

#carrousel {
    display: flex;
    flex-direction: column;
    background-position: center;
    background-size: cover;
    aspect-ratio: 4/2;
    width: 70%;
}

#carrouselArrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    margin: 35px 15px 0 15px;
}

.arrowIcon {
    height: 50px;
    cursor: pointer;
}

#carrouselCircles {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

#carrouselCircles > img {
    height: 20px;
    cursor: pointer;
}