/* 1. Basic Reset & Font Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a1421; /* Fallback color */
    color: #f0f0f0;
}

/* 2. The Hero Section with Gradient Background */
.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Aligns content to the right */
    
    /* THE GRADIENT & BACKGROUND IMAGE */
    background: 
        /* MODIFIED: The gradient is now tighter to the right to reveal more image */
        linear-gradient(
            -90deg, 
            rgba(10, 20, 33, 0.95) 15%, /* Starts solid a bit later */
            rgba(10, 20, 33, 0) 45%   /* Fades to transparent much sooner */
        ),
        /* Use your new, wide image here */
        url('/static/images/forge_main_image.jpg') no-repeat center center;
    
    background-size: cover; 
}

/* 3. Content & Form Styling */
.login-container {
    /* MODIFIED: Was 360px. 30% narrower -> 360 * 0.7 = 252px (rounded to 250px) */
    max-width: 250px;
    /* MODIFIED: Was 10vw. 30% closer to edge -> 10 * 0.7 = 7vw */
    margin-right: 7vw; 
}

.login-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.login-container p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 90%;
    opacity: 0.9;
}

.login-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 1rem;
    border-radius: 5px;
    border: 1px solid #4a5568;
    background-color: #1a202c;
    color: #f0f0f0;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.login-form button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 5px;
    background-color: #FF9900; /* Vibrant orange from the sparks */
    color: #1a202c;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

.login-form button:hover {
    background-color: #E68A00; /* A slightly darker orange for hover */
}