<Button type="submit" className="Form__Button mr-20">Sign In</Button>
I'm working on jsx file, I want to add custom style for above Button if I try this
{<style type="text/css">
{`
.Form__Button {
background-color: #52C4B9;
color: white;
border: none;
outline: none;
border-radius: 25px;
}
`}
</style>
But if I use style in a different css file it not work