
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.drag-image{
  border: 1px dashed #c0c0c0;
  height: 300px;
  width: 350px;
  border-radius: 5px;
  font-weight:400;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.drag-image.active{
  border: 2px solid #c0c0c0;
}
.drag-image .icon{
  font-size: 30px;
  color: #000;
}
.drag-image h6{
  font-size: 20px;
  font-weight: 300;
  color: #000;
}
.drag-image span{
  font-size: 14px;
  font-weight: 300;
  color: #c0c0c0;
  margin: 10px 0 15px 0;
}

.drag-image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}