body {
    background-color: #333; 
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
}
h2 {
    text-align: center;
    color: white;
}

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

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button[type="submit"] {
    background-color: #007bff; 
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #0056b3; 
}

#error-message {
    color: red;
}

p{
    color: white;
}