Is there a way to evenly space my background image with 10px margins on all sides instead of just the left side? Currently, it's only working on the left 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;
}