/* This is for the background image for the better experince. */

body {
    background: url('bg.webp') no-repeat center center fixed;
    background-size: cover;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
    /* Adjust blur intensity */
    z-index: -1;
}
@media (min-width: 1024px) {
    #formCard {
        margin-top: 4.4%;
        /* Apply 20% margin-top for screens 1440px wide and above */
    }
}

@media (min-width: 1440px) {
    #formCard {
        margin-top: 3.5%;
        /* Apply 20% margin-top for screens 1440px wide and above */
    }
}

@media (min-width: 2560px) {
    #formCard {
        margin-top: 1.7%;
        /* Apply 20% margin-top for screens 1440px wide and above */
    }
}

.Logo {
    height: 100px;
    width: 100px;
    border-radius: 10px;
}

/* Global Loader Styling */
.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Dark transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    /* z-index: 9999; */
    /* Ensures it appears above all other content */
}

.global-loader .logo {
    width: 100px;
    /* Adjust size as needed */
}

.floating-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    /* Added padding */
    margin: 10px 0;
    /* Added margin */
    z-index: 1000;
}

.content {
    padding-top: 100px;
    /* Added padding to main content */
}

.navbar-buttons .btn {
    margin-right: 10px;
    /* Added margin to buttons */
}

.popup {
    display: none; /* Hide by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 300px;
    box-shadow: 0px 0px 10px #000;
}
