/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: url('../assets/images/concept-art-main-wide.png'); /* Replace with actual 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 */
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.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; /* Aetherlings-themed color */
    text-shadow: 0 2px 10px rgba(255, 204, 0, 0.8);
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffcc00;
    text-shadow: 0 1px 5px rgba(255, 204, 0, 0.6);
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.auth-form input {
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    outline: none;
    background: #222;
    color: #fff;
}

.auth-form input::placeholder {
    color: #aaa;
}

.auth-form button {
    padding: 10px;
    font-size: 1rem;
    background: #ffcc00;
    color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.auth-form button:hover {
    background: #e6b800;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
