body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background-color: #121212;
    color: #f0f0f0;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

.menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    display: block;
    padding: 1rem;
    background-color: #1e1e1e;
    border: 1px solid #2c2c2c;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.menu-item:hover {
    background-color: #2a2a2a;
}

label {
    line-height: 175%;
}

input,
button,
select,
textarea {
    background-color: #1e1e1e;
    color: #f0f0f0;
    border: 1px solid #333;
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 1rem;
}

input[type=text] {
    width: 100%;
}

button {
    cursor: pointer;
    background-color: #333;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #444;
}
