body{
    background-color: initial;
}
main{
    max-width: initial;
    padding-bottom: 0;
}

.login {
    display: flex;
    height: 100vh;
}

.login .firstSection, .login .secondSection{
    width: 50%;
}

.login .firstSection{
    background-color: #F4F5F6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login .firstSection img{
    width: auto;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

.login .secondSection{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2em;
}

.login .secondSection .secondSectionContent{
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

.login .secondSection .secondSectionContent{
    width: 60%;
}

.login .secondSection .secondSectionContent form{
    display: flex;
    flex-direction: column;
    gap: 1em;
    width: 90%;
}


.login .secondSection .secondSectionContent form .inputContainer input{
    width: 100%;
}


.login .secondSection .secondSectionContent form .containerRemember{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login .secondSection .secondSectionContent form .containerRemember div{
    display: flex;
    align-items: center;
    gap: .5em;
}

.login .secondSection .secondSectionContent form .containerRegister{
    padding-top: 1em;
    border-top: 1px solid #DFDFDF;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 1100px) {

    .login .firstSection img{
        width: 100%;
        height: auto;
    }

    .login .secondSection .secondSectionContent{
        width: 100%
    }
}

@media screen and (max-width: 700px) {
    .login .firstSection{
        display: none;
    }

    .login .secondSection{
        width: 100%;
    }

    .login .secondSection .secondSectionContent form{
        width: 100%;
    }
}

