nav{
    background-color: white;
}

.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand{
    display: flex;
    align-items: center;
}

.brand .logo{
    width: 60px;
    height: 60px;
}

.brand .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.text-brand p{
    margin-bottom: 0;
}

.text-brand p:first-child{
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.text-brand p:last-child{
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.button-login{
    background-color: #00AFD8;
    padding: 5px 25px 7px 25px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.button-login a{
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.button-login:hover{
    background-color: #028dac;
}




@media (max-width: 480px) {
    .brand .logo{
        width: 40px;
        height: 40px;
    }

    .text-brand p:first-child{
        font-weight: 600;
        font-size: 14px;
        margin-bottom: -3px;
    }
    
    .text-brand p:last-child{
        font-size: 12px;
    }

    .button-login{
        padding: 0px 15px 5px 15px;
        border-radius: 20px;
        transition: background-color 0.3s ease;
    }
    
    .button-login a{
        font-size: 12px;
        font-weight: 500;
    }
}