body {
    background-color: #1a1a1a;
    color: #e60000;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    border: 2px solid #e60000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px #e60000;
}

input {
    padding: 10px;
    border: 1px solid #e60000;
    border-radius: 5px;
    margin: 10px 0;
}

button {
    padding: 10px 20px;
    background-color: #e60000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ff3333;
}
