I'm attempting to create a login page similar to Instagram using HTML and CSS. However, I'm having trouble styling the button to match Instagram's login page.
The button
<input type="submit" class="sub-btn">
The CSS :
.wrapper .header .form .sub-btn{
margin: 10px 0;
background-color: #3897f0;
border: 1px solid #3897f0;
border-radius: 4px;
text-align: center;
padding: 5px;
}
Despite applying this CSS style, it doesn't reflect properly on the HTML page. Any assistance would be appreciated.