body {
    font-family: sans-serif;
    text-align: center;
    background: #0e0e0e;
    color: #f5f5f5;
    padding-top: 100px; 
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em; /* fixed typo: no space between 1.2 and em */
    text-decoration: none;
    color: white;
    background: #ff3e96;
    border-radius: 8px;
    transition: background 0.2s;
}

a:hover {
    background: #ff69b4;
}

/* NEW: Style for forms */
form {
    background: #1e1e1e;
    margin: 30px auto;
    padding: 20px;
    border-radius: 10px;
    max-width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

input {
    width: 90%;
    margin: 10px auto;
    padding: 12px;
    border-radius: 5px;
    border: none;
    background: #2b2b2b;
    color: white;
    font-size: 1em;
}

input::placeholder {
    color: #aaa;
}

button {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.1em;
    margin-top: 10px;
    background: #ff3e96;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #ff69b4;
}

/* NEW: Smaller titles for Login / Create Account */
h2 {
    font-size: 2em;
    margin-top: 50px;
    color: #ffb6c1;
}
