.background-div {
    position: absolute;
    /* Makes it span the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-secondary));
    /* background: radial-gradient(var(--bs-break), transparent 70%); */
    z-index: -1;
    /* Ensures it stays behind the content */
    /* overflow-y: auto; */
}

.content {
    /* top: 100px; */
    position: relative;
    /* Ensures text is positioned above the background */
    z-index: 1;
    height: 100vh;
    /* overflow-y: auto; */
}

.login-card {
    max-width: 400px;
    border-radius: 4px;
    background-color: var(--bs-light);
}

footer {
    background-color: var(--bs-dark);
    /* Dark background */
    position: relative;
    color: white;
    padding: 1rem 0;
}

.footer-text {
    font-size: 14px;
}

link[rel="shortcut icon"],
link[rel="icon"] {
    display: none !important;
}