.dropzone {
  border: 2px dashed #0087F7;
  border-radius: 5px;
  background: #f9f9f9;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dropzone .dz-message {
  font-weight: bold;
  color: #555;
}
.dropzone .dz-image img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}