I want the background image I am using to have 10px margins. But every time I try, it only works on the left side. How can I give my background image equal space on each side?
.login-page {
display: flex;
flex-direction: column;
background: url("../src/Assets/images/Books-background.jpg");
background-size: cover;
background-repeat: no-repeat;
height: 100vh;
}