body {
    font-family: monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #15191D;
}

.container {
    text-align: center;
    background: #1b2028;
    padding: 2em;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
    margin-bottom: 1em;
    color: #f8f8f8;
}

input {
    padding: 0.5em;
    width: 80%;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #323d46;
    color: #ccc;
}

button {
    padding: 0.5em 7em;
    font-size: 1em;
    margin: 0.5em;
    border: none;
    border-radius: 5px;
    background-color: #202932;
    color: white;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}