body { background-color: rgb(69, 52, 56); /* Set body background color */ color: white; /* Set text color */ font-family: Arial, sans-serif; /* Set font family */ } h1 { color: white; /* Set heading color */ text-align: center; } form { background-color: rgb(33, 25, 27); /* Set form background color */ padding: 20px; border-radius: 10px; } label { color: white; /* Set label text color */ } input[type="text"], input[type="number"], textarea, input[type="file"], button[type="submit"] { width: 100%; padding: 8px; margin-bottom: 10px; border-radius: 5px; border: none; color: black; } input[type="file"] { background-color: white; /* Set file input background color */ } button[type="submit"] { background-color: rgb(69, 52, 56); /* Set submit button background color */ color: white; /* Set submit button text color */ cursor: pointer; } button[type="submit"]:hover { background-color: rgb(33, 25, 27); /* Change submit button color on hover */ }