/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('./images/concept-art-main-wide.png'); /* Updated image path */
    background-size: contain; /* Ensures the entire image is displayed */
    background-repeat: no-repeat; /* Prevents tiling */
    background-position: center;
    background-attachment: fixed;
    background-color: #333; /* Dark grey background for empty space */
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #333, transparent 25%, transparent 75%, #333);
    pointer-events: none;
}

.container {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 600px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffcc00; /* Aetherling-themed color */
    text-shadow: 0 2px 10px rgba(255, 204, 0, 0.8);
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup-form input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    outline: none;
}

.signup-form input::placeholder {
    color: #aaa;
}

.signup-form button {
    padding: 10px;
    font-size: 1rem;
    background: #ffcc00;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.signup-form button:hover {
    background: #e6b800;
}
