[type="file"] {
  height: 0;
  overflow: hidden;
  width: 0;
}

[type="file"] + label {
  background: #0367a6;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: inherit;
  font-weight: 500;
  margin-bottom: 1rem;
  outline: none;
  padding: 0.3rem 40px;
  position: relative;
  transition: all 0.3s;
  vertical-align: middle;
}

[type="file"] + label:hover {
  background-color: #a30202;
}

[type="file"] + label.btn-1 {
  background-color: #d70404;
  box-shadow: 0 6px #a30202;
  transition: none;
}

[type="file"] + label.btn-1:hover {
  box-shadow: 0 4px #a30202;
  top: 2px;
}

