body {
    background-color: #333; /* Dark background color */
    color: #fff; /* Text color */
    font-family: Arial, sans-serif; /* Choose an appropriate font */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}

div {
    text-align: center; /* Center-align content */
    padding: 20px; /* Add padding to the container */
}

h2 {
    color: #fff; /* Header text color */
}

form {
    margin-top: 20px; /* Add some spacing above the form */
}

label {
    display: block; /* Display labels as block elements */
    margin-top: 10px; /* Add some spacing below labels */
    color: #fff; /* Label text color */
}

input[type="text"],
input[type="password"] {
    width: 260px; /* Set input width */
    padding: 10px; /* Add padding to inputs */
    border: none; /* Remove default borders */
    background-color: #555; /* Dark background color for inputs */
    color: #fff; /* Text color for inputs */
    margin-top: 12px;
}

input[type="submit"] {
    background-color: #044491; /* Button background color */
    color: #fff; /* Button text color */
    border: none; /* Remove default button border */
    padding: 10px 20px; /* Add padding to the button */
    cursor: pointer; /* Add cursor pointer on hover */
    margin-top: 15px;
}

input[type="submit"]:hover {
    background-color: #0553b0; /* Button background color on hover */
}
