header{
    background-color: #cccccc;
    padding: 20px 2%;
}

header .container{
    display: flex;
    justify-content: end;
}

.area-login{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-login div > p{
    color: red;
    font-size: 14px;
    display: none;
}

.area-login input{
    padding-left: 7px;
    border-radius: 7px;
    border: 0;
    height: 30px;
}   

.area-login button{
    width: 100px;
    height: 30px;
    background-color: rgb(105, 194, 105);
    color: white;
    border-radius: 7px;
    border: 0;
    cursor: pointer;
    transition: 0.4s;
}

.area-login button:hover{
    background-color: rgb(66, 190, 66);
}

.titulo-sgp{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}