body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    background-size: cover;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Adjust to space elements correctly */
    height: 100%;
    color: white;
    text-align: center;
}

.login-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    max-width: 350px;
    width: 100%;
    z-index: 2; /* Ensure it's above other elements */
    text-align: center;
    margin-top: auto; /* Center vertically */
    margin-bottom: auto; /* Center vertically */
}

.message {
    margin: 5% 0; /* Adjust as needed */
    width: 100%;
    text-align: center;
    z-index: 1; /* Ensure it's above the carousel but below the login box */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .message {
        position: relative;
        bottom: 2.5%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
}

    .message h1 {
        font-size: 24px;
        color: white;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .message h1 {
        font-size: 12px;
    }
}


.login-header {
    margin-bottom: 20px;
}


.login-header p{
    color:black;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: green;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

    .login-form button:hover {
        background: darkgreen;
    }

.links {
    margin-top: 10px;
}

    .links a {
        color: green;
        text-decoration: none;
        margin: 0 10px;
    }

        .links a:hover {
            text-decoration: underline;
        }

.carousel-item img {
    width: 100%; /* Stretch to fit the width of the parent */
    height: 100%; /* Stretch to fit the height of the parent */
    object-fit: cover; /* Ensures the image covers the container without distortion */
}


/* Carousel Styling */
#introCarousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.carousel-inner .carousel-item {
    pointer-events: none !important; /* Disable pointer events only for the sliding items */
}

.carousel-control-prev,
.carousel-control-next,
.carousel-indicators {
    pointer-events: auto !important; /* Ensure these elements can be clicked */
}


