body {
    background-color: #1c1c1c;
    color: #f0f0f0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background-color: #2c2c2c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

h1 {
    margin-bottom: 20px;
}

label {
    display: block;
    margin: 10px 0 5px;
}

select, input[type="password"], button {
    width: 100%;
    padding: 0px;
    margin-bottom: 30px;
    border: none;
    border-radius: 5px;
    font-size: 30px;
}

select, input[type="password"] {
    background-color: #444;
    color: #f0f0f0;
}

button {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
