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

.container {
    background-color: #2c2c2c;
    padding: 60px 40px;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    text-align: center;
}

h1 {
    color: white;
    margin-bottom: 30px;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input, form button {
    width: 90%;
    max-width: 350px;
    padding: 15px;
    margin: 20px 0;
    border: none;
    border-radius: 5px;
    background-color: #444;
    color: white;
    outline: none;
}

form button {
    background-color: #4CAF50;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
}

form button:hover {
    background-color: #45a049;
}
