/* Centers content and prevents scrolling by accounting for the navbar */
.login-wrapper {
    min-height: calc(100vh - 200px); /* Adjust 200px if your navbar is taller/shorter */
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-card {
    width: 100%;
    max-width: 500px; /* Standard login width */
    padding: 2rem;
}