/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Space+Mono:wght@400;700&display=swap');

/* Basic reset for consistent styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Space Mono', monospace; /* Techy, modern monospaced fonts */
    font-size: 1rem; /* Minimum size 16px */
    line-height: 1.5;
    background-color: #121212; /* Darker background for a modern/techy feel */
    color: #e0e0e0; /* Light text color */
}

/* Header (Top Bar) */
header {
    /* background-color: #1e1e1e; Removed as requested */
    color: #ffffff;
    height: 120px; /* Fixed height for the top bar */
    display: flex;
    align-items: center;
    padding: 0 2rem;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4); Removed as requested */
}

    header h1 {
        margin: 0;
        font-family: 'Orbitron', sans-serif; /* Unique font for the title */
        font-size: 2.8rem; /* Larger font for the title */
        letter-spacing: 3px;
        color: #00ff00; /* Lime green for the title */
        font-weight: 700; /* Bold weight for contrast */
    }

/* Main content area for the article */
article {
    margin: 0 6rem; /* Margin as requested */
    padding: 2.5rem; /* Slightly more padding */
    /* background-color: #1a1a1a; Removed as requested */
    border-radius: 10px; /* Slightly more rounded corners */
    /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5); Removed as requested */
    max-width: 550px; /* Slightly wider for better readability */
    margin-top: 3rem; /* More space below the header */
    margin-left: auto; /* Center the article */
    margin-right: auto; /* Center the article */
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem; /* More space between form groups */
    margin-top: 2rem;
    border: 1px solid #1a1a1a; /* Added solid border as requested */
    border-radius: 10px; /* Keep consistent with article border-radius */
    padding: 2.5rem; /* Add padding inside the form to match article */
}

    form div {
        display: flex;
        flex-direction: column;
    }

label {
    margin-bottom: 0.6rem;
    font-weight: 700; /* Bold label for contrast */
    color: #b0b0b0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em; /* More pronounced letter spacing */
}

input[type="text"],
input[type="password"] {
    padding: 1rem; /* More padding */
    border: 1px solid #2a2a2a; /* Slightly darker border for subtle definition */
    border-radius: 6px; /* Slightly more rounded */
    background-color: #1a1a1a; /* Matching article background for unified look */
    color: #e0e0e0;
    font-size: 1.1rem; /* Slightly larger input text */
    font-family: 'Space Mono', monospace;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    input[type="text"]:focus,
    input[type="password"]:focus {
        border-color: #00ff00; /* Lime green highlight on focus */
        outline: none;
        box-shadow: 0 0 0 4px rgba(0, 255, 0, 0.3); /* Lime green shadow */
    }

button[type="submit"] {
    padding: 1.2rem 1.8rem; /* More padding */
    background-color: #00ff00; /* Lime green accent color for button */
    color: #121212; /* Dark text on bright button */
    border: none;
    border-radius: 6px;
    font-size: 1.2rem; /* Larger font */
    font-weight: 700; /* Bold weight */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em; /* More pronounced letter spacing */
}

    button[type="submit"]:hover {
        background-color: #00cc00; /* Slightly darker green on hover */
        transform: translateY(-3px); /* More pronounced lift effect */
    }

/* Links section */
section {
    margin-top: 2.5rem; /* More space */
    text-align: center;
    font-size: 1rem; /* Slightly larger font */
}

    section p {
        margin: 0.6rem 0; /* More space between paragraphs */
    }

a {
    color: #00ff00; /* Lime green link color */
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700; /* Bold links */
}

    a:hover {
        color: #00cc00; /* Slightly darker green on hover */
        text-decoration: underline;
    }
