body {
    font-family: Arial;
    background: #0f172a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background: #1e293b;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

input, button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
}

button {
    background: #3b82f6;
    border: none;
    color: white;
    cursor: pointer;
}