#movie-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
}

#movie-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

#movie-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

#movie-form input,
#movie-form select,
#movie-form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#movie-form textarea {
  height: 100px;
  resize: vertical;
}

#movie-form button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

#movie-form button:hover {
  background-color: #45a049;
}