body {
    background-image: url('https://skillforge.forgeacton.com/skillforgeBG');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Keeps the background fixed during scroll */
    display: flex;
    flex-direction: column; /* Stack header and login box vertically */
    align-items: center;
    justify-content: flex-start; /* Align content to the top */
    min-height: 100vh;
    margin: 0;
    font-family: 'VT323', 'Courier New', Courier, monospace; /* Fallback if styles.css doesn't load */
}

header#pageHeader { /* Specific ID for this page's header if needed */
    width: 100%;
    background-color: rgba(176, 224, 230, 0.85); /* Powder Blue with some transparency */
    color: #2F4F4F;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px; /* Space between header and login box */
}

header#pageHeader h1 {
    font-family: 'Press Start 2P', 'Courier New', Courier, monospace;
    font-size: 2.5em;
    color: #8B4513; /* Saddle Brown */
    margin: 0;
    text-shadow: 2px 2px #FFFACD; /* Lemon Chiffon shadow for pop */
}

.login-container {
    background-color: rgba(255, 255, 255, 0.9); /* White with slight transparency */
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px; /* Control the width of the login box */
    text-align: center;
}

.login-container h2 {
    /* Uses h2 style from styles.css */
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 1.8em; /* Adjust if needed */
}

/* Form elements will inherit from styles.css */
.login-container form div {
    margin-bottom: 20px;
    text-align: left; /* Align labels and inputs to the left */
}
.login-container form label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em; /* Slightly larger labels */
}
.login-container form input[type="text"],
.login-container form input[type="password"] {
    width: calc(100% - 24px); /* Full width minus padding and border */
    font-size: 1.1em; /* Larger input text */
}
.login-container form button[type="submit"] {
    width: 100%;
    padding: 12px;
    font-size: 1.1em; /* Larger button text */
    margin-top: 10px;
}

#loginError {
    /* Styled by .error-message from styles.css */
    margin-top: 15px;
    font-weight: bold;
    display: none; /* Hidden by default */
} 