body{
    margin: 0px;
    padding: 0px;
    font-family: Arial, Helvetica, sans-serif;
    p,h1,label,a{
        color: #ffff;
    }

    p{
        margin: 0px;
    }
    .flex-colum, .flex-row{
        margin-top: 1.5rem;
    }
    label{
        margin-bottom: 0.5rem;
    }
}

.main{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    .formDiv{
        width: 50%;
        height: 100%;
        background-color: #2C6CDA;
        border-top-right-radius: 30%;
        border-bottom-right-radius: 30%;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .img-form{
        width: 50%;
        height: 100%;
    }
}
#TitleLogin{
    font-size: 2.4rem;
}


.form{
    width: 50%;
 
}
.flex-colum{
    width: 100%;
    display: flex;
    flex-direction: column;
}


input{
    width: 100%;
    height: 2.5rem;
    border-radius: 5px;
    border: 0px;
}

.passlost{
    margin-top: 0.5rem;
    

}

.buttonLogin{
    display: flex;
    width: 100%;
    justify-content: center;
}

button{
    margin-top: 2rem;
    border-radius: 10px;
    border: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    height:2.5rem;
    width: 8rem;
    color: #1541AA;
}

button:hover{
    animation: mov-img 0.2s ease-in-out both ;
}

.img-form   {
    display: flex;
    width: 50%;
    height: 100%;

}
.createAcount{
    margin-top: 2rem;
}


@keyframes mov-img{
    0%{
        transform: translateY(0);
    }
    100%{
        transform: translateY(-1px);
    }
}

.flex-row{
   
    width: 100%;
    
}
#recuperarSenha{
    color: #ffff;
     width: 100%;
    text-decoration: none;
    font-size: 1rem;

    background-color: transparent;

}

#recuperarSenha:hover{
    color: #ffff;
    cursor: pointer;
    text-decoration: underline;
}