body {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: "Century Schoolbook", serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

#login-container {
    text-align: center;
    width: 100%;
    max-width: 350px;
}

h1 {
    font-size: 1.5rem;
    letter-spacing: 0.4em;
    margin-bottom: 40px;
    font-weight: normal;
}

input {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    font-family: inherit;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 15px;
    background: white;
    color: black;
    border: none;
    font-family: inherit;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 0.1em;
}

.secondary-link {
    display: block;
    margin-top: 20px;
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
}