.form-file-upload {
	height: 16rem;
	width: 28rem;
	max-width: 100%;
	text-align: center;
	position: relative;
  }
  
  .input-file-upload {
	display: none;
  }
  
  .label-file-upload {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-width: 2px;
	border-radius: 1rem;
	border-style: dashed;
	border-color: #cbd5e1;
	background-color: #f8fafc;
  }
  
  .label-file-upload.drag-active {
	background-color: #ffffff;
  }
  
  .upload-button {
	cursor: pointer;
	padding: 0.25rem;
	font-size: 1rem;
	border: none;
	text-decoration: underline;
	color:#f93839;
	padding: 0 0 15px 0;
	background-color: transparent;
  }
  
  
  .drag-file-element {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

@media screen and (max-width: 600px) {
	.form-file-upload {
		width: 100%;
	}
}

@media screen and (max-width: 400px) {
	.form-file-upload {
		width: 100%;
	}
}