/* Upload form styles */

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px auto;
  max-width: 500px;
}

input[type="file"] {
  margin: 20px 0;
}

label {
  margin-bottom: 10px;
  font-weight: bold;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
  font-size: 16px;
}

input[type="submit"] {
  background-color: #1a73e8;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-size: 16px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #0d47a1;
}
