body{
    display: flex;
    overflow: hidden;
}

#container{
    width: 50vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#container-cadastro{
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10vh 0 10vh;
}

@media(max-width:700px){
    #container{
        display: none;
    }
}
#form-login{
    height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;

}

h2{
    font-weight: 400;
    font-size: 1.5rem;
    color: #5F5D5D;
}

input{
    width: 80%;
    padding: 2.5vh 1vw;
    border: 1px solid #B6B6B6;
    border-radius: 0.25rem;
    outline-color: #089C94;
}

#login-btn{
    background-color: #089C94;
    border: transparent;
    border-radius: 0.25rem;
    width: 85%;
    padding: 2.5vh 1vw;
    color: #fff;
    font-weight: 300;
}

#login-btn:hover{
    opacity: 0.8;
}

#password-reset{
    background-color: #fff;
    border: none;
}

#password-reset:hover{
    color:#089C94;
    text-decoration: underline;
}

aside{
    background-color: #DAF4E4;
    width: 50vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}

@media(max-width:700px){
    aside{
        display: none;
    }
}

h1{
    color: #00652B;
    font-weight: 500;
    font-size: 1.75rem;
    text-align: center;
}

@media(max-width:700px){
    h1{
        display: none;
    }
}

#logo{
    width: 40%;
    padding: 10vh 0;
}

.container-mobile{
    display: none;
}

@media(max-width:700px){
.container-mobile img {
    height: 20vh;
}

h2{
    width: 80%;
    text-align: center;
}


.container-mobile{
    display: flex;
    height: 100vh;
    padding: 5vh 0;
}

.form-login{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 80%;
}


}