﻿.identitybackground-page-wrapper {
    position: relative;
    min-height: 100vh;
}

    .identitybackground-page-wrapper::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/images/common/login_background.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        z-index: -1;
    }

/* Optional: Add a semi-transparent overlay to improve text readability */
.identitybackground-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

    /* Optional: Style the form sections for better visibility over the background */
    .identitybackground-content section {
        background-color: rgba(255, 255, 255, 0.9);
        padding: 1.5rem;
        border-radius: 8px;
    }
