@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Styles */
html, body {
    height: 100%;
    margin: 0;
    overflow: hidden; 
    opacity: 1;
    /* pointer-events: none;  honour your agreement*/
}

body {
    font-family: "Fira Sans", sans-serif;
    font-style: normal;
    font-weight: 400;
    background: url(../assets/images/loginB.jpeg) center / cover no-repeat; /* Cover the entire screen */
}

a {
    text-decoration: none;
}

.overlay {
    position: fixed; /* Cover the entire viewport */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7); /* White overlay with opacity */
    z-index: 1; /* Ensure overlay is above the background image */
}

.main-content {
    position: relative; /* Allow positioning for the main content */
    z-index: 2; /* Ensure content is above the overlay */
    height: 100%; /* Full height for scrolling */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 20px; /* Add padding for aesthetics */
}


