I am facing an issue with the CSS styling when using built-in tags like "form-group" in my code. Strangely, the browser does not apply the CSS when I use these built-in tags. However, if I define my own classes, such as "classes.form", the CSS is visible in the browser. When inspecting the code, the browser shows styles for ".form-group.scss" but not for my custom CSS.
Below is the code snippet where I am using the built-in tag "form-group":
<div className="form-group">
<label htmlFor="email"></label>
<Input
type="text"
className="form-control"
placeholder="email"
value={email}
onChange={onChangeEmail}
validations={[required, validEmail]}
/>
</div>
Here is the custom CSS I have defined:
.form-group {
margin-bottom: 0.2rem;
margin-top: 0.2rem;
}