/* General Body Style */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Ensure no scrollbars are shown */
    background: #000; /* Fallback background color */
}

/* Center the login container and limit its width */
#login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay */
}

.login-container-inner {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 400px; /* Limit the maximum width */
    width: 90%; /* Make it responsive, using 90% of the available width, but limited by max-width */
}

/* Input Field Style */
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* Ensures padding and border are included in the element's width */
}

/* Button Style */
button {
    width: 100%; /* Match the width of the input field */
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    background-color: #bf66ff; /* Default button color: purple */
    color: #fff; /* White text on the button */
    font-size: 16px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    box-sizing: border-box; /* Ensures padding and border are included in the element's width */
}

button:hover {
    background-color: #8a2be2; /* Lighter purple on hover */
    color: white;
}



/* Main Content */
main {
    margin-top: 130px; /* Increased to ensure the main content starts below the header */
    padding: 20px;
}

/* Responsive Image */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Media Queries for Smaller Screens */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.8em; /* Smaller header font size for small screens */
    }

    nav a {
        font-size: 1em; /* Smaller navigation link size for small screens */
    }

    main {
        margin-top: 100px; /* Adjusted space for header on small screens */
    }

    .login-container-inner {
        padding: 20px; /* Adjust padding for smaller screens */
    }

    button {
        padding: 10px; /* Adjust button padding for smaller screens */
    }
}

/* Footer */
footer {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}