.forms{
    display: flex;
    justify-content: center;
}

.forms div:nth-child(1){
    background-color: var(--roxoMuitoJogo);
    padding: 5rem 2rem;
    color: white;
}

.forms div:nth-child(1) img{
    height: auto;
    padding-bottom: 2rem;
}
@media only screen and (max-width: 600px) {
    .forms{
        padding: 0 0;
    }

    .forms div:nth-child(1){
        width: 100vw;
        min-height: 450px;
        height: calc(100vh - 120px);
        background-color: transparent;
    }

    .forms div:nth-child(1) img{
        max-width: 250px;
    }
}

@media only screen and (min-width: 600px) {
    .forms{
        padding: calc((100vh - 600px - 90px)/2) 3rem;
    }

    .forms div:nth-child(1){
        width: 420px;
        min-height: 600px;
        border: black solid 1px;
        border-radius: 5%;
    }
    .forms div:nth-child(1) img{
        max-width: 340px;
    }

}
