.tela-login{
    padding: 5rem 0;
    height: calc(100vh - 300px);
    background-color: #fff;
    margin-bottom: 4rem;

}
.tela-login h2{
    font-size: 3rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    font-weight: 600;
}
.area-form{
    display: flex;
}
.area-form .img{
    width: 600px;
    height: 500px;

}
.area-form .img img{
    width: 100%;
    height: 100%;
}
.area-form form{
    flex: 1;
    background-color: #eee;
    padding: 3rem;
    box-shadow: 0 3px 5px #444;

}
.area-form .form-group{
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}
.area-form .form-group label{
    font-size: 2rem;
    margin-bottom: 1rem;

}
.area-form .form-group small{
    font-size: 1.5rem;
    margin-top: 1rem;
}
.area-form .form-group input{
    outline: none;
    border: 0;
    background-color: transparent;
    background-color: #fff;
    border: 1px solid #bbb;
    padding: 2rem;
    font-size: 2rem;
}
.area-form button{
    cursor: pointer;
    outline: none;
    display: inline-block;
    align-items: center;
    justify-content: center;    
    padding: 2rem;
    font-size: 2rem;
    text-transform: uppercase;
    background-color: rgb(11, 93, 160);
    color: #fff;
    border: 0;
    transition: all .3s ease;
}
.area-form button:hover{
    background-color: #287ec5;
}
.area-form .link-info{
    text-align: right;
    font-size: 1.8rem;
    margin-top: 2rem;
    color: #666;
}
.area-form .link-info a{
    color: forestgreen;
    text-transform: uppercase;
    font-weight: 700;
}