body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif; /* Changed to Georgia for a classy look */
    background-color: #121212; /* Fallback color */
    color: #E0E0E0; /* Light text color for contrast */
}

.hero-image {
    background: url('the_engine_background_2.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    text-align: center;
    color: #E0E0E0; /* Light text color */
    width: 100%;
    height: 100vh; /* Full viewport height */
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    background-color: rgba(18, 18, 18, 0.8); /* Dark background with some transparency */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#Group-Title {
    color: #D4AF37; /* Metallic gold color */
    font-size: 3em;
    font-family: 'Georgia', serif;
    margin: 0;
    text-shadow: 2px 2px 4px #000000;
}

#group-Description {
    color: #B8860B; /* Slightly darker metallic gold color */
    font-size: 1.5em;
    font-family: 'Courier New', Courier, monospace;
    margin: 10px 0;
    text-shadow: 1px 1px 2px #000000;
}

.login-container {
    background-color: #2E2E2E; /* Secondary background color */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin: 20px 0;
}

.login-container label {
    display: block;
    margin-bottom: 5px;
    color: #E0E0E0; /* Light text color */
    font-family: 'Georgia', serif;
}

.sign-in-field {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #B8860B; /* Accent border color */
    border-radius: 5px;
    background-color: #121212; /* Dark input background */
    color: #E0E0E0; /* Light text color */
    font-family: 'Georgia', serif;
    box-sizing: border-box; /* Added for better width calculation */
}

.password-wrapper {
    position: relative;
    display: flex; /* Align input and button */
    align-items: center; /* Center items vertically */
    margin-bottom: 10px; /* Maintain spacing, similar to what input field had */
}

.password-wrapper .sign-in-field {
    flex-grow: 1; /* Input takes available space */
    padding-right: 50px; /* Make space for the toggle button */
    /* margin-bottom is handled by the wrapper or the general input rule now */
}

.toggle-password {
    position: absolute;
    right: 0px; /* Positioned at the far right of the wrapper */
    top: 0px; /* Align to the top of the wrapper */
    bottom: 0px; /* Stretch to the bottom of the wrapper */
    width: 45px; /* Fixed width for the button */
    background: transparent;
    border: none;
    color: #000; /* Make the text/icon black for visibility */
    cursor: pointer;
    font-size: 0.8em; /* Adjusted for text like "Show" */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0; /* Remove default button padding */
}

.login-Button {
    background-color: #D4AF37; /* Metallic gold color */
    color: #121212; /* Dark text color for contrast */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-Button:hover {
    background-color: #B8860B; /* Slightly darker on hover */
}

.forum-container {
    margin-top: 20px;
}

.forum-link {
    color: #D4AF37; /* Metallic gold color */
    text-decoration: none;
    font-family: 'Georgia', serif;
}

.forum-link:hover {
    color: #B8860B; /* Slightly darker on hover */
}

form {
    text-align: left; /* Align form text to the left */
}

form input {
    margin-bottom: 10px; /* Add space between input fields */
}

form button {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
}

