.form-container {
	background-color: #7b2cbf;
	display: flex;
	justify-content: center;
	align-items: center;
}

.upload-files-container {
	background-color: transparent;
	width: 100%;
	padding: 0px;
	border-radius: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	box-shadow: none;
}

.drag-file-area {
	border: 1px dashed #262f58;
	border-radius: 40px;
	margin: 10px 0 15px;
	padding: 0 0 15px;
	width: 100%;
	text-align: center;
}

.drag-file-area .upload-icon {
	font-size: 50px;
}

.drag-file-area h3 {
	font-size: 18px;
	margin: 0px 0;
}

.drag-file-area label {
	font-size: 12px;
	text-align: center;
}

.upload-button {
	/*display: none !important;*/
}

.browse-files {
	display: block;
}

.drag-file-area label .browse-files-text {
	color: #7b2cbf;
	font-weight: bolder;
	cursor: pointer;
}

.browse-files span {
	position: relative;
	top: 0px;
}

.default-file-input {
	opacity: 0;
	position: absolute;
}

.cannot-upload-message {
	background-color: #ffc6c4;
	font-size: 17px;
	display: flex;
	align-items: center;
	margin: 5px 0;
	padding: 5px 10px 5px 30px;
	border-radius: 5px;
	color: #BB0000;
	display: none;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.cannot-upload-message span,
.upload-button-icon {
	padding-right: 10px;
}

.cannot-upload-message span:last-child {
	padding-left: 20px;
	cursor: pointer;
}

.file-block {
	color: #f7fff7;
	background-color: #00002f;
	transition: all 1s;
	width: 390px;
	position: relative;
	/* display: none; */
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0 15px;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
}

.file-block {
	margin: 5px 10px;
}

.upload-button {
	display: none !important;
}

.uploaded-files {
	display: flex;
}

.file-info img {
	width: 35px !important;
	height: 35px !important;
	margin-right: 5px;
}

.file-info {
	display: flex;
	align-items: center;
	font-size: 15px;
}

.file-icon {
	margin-right: 10px;
}

.file-name,
.file-size {
	padding: 0 3px;
}

.remove-file-icon {
	cursor: pointer;
	position: absolute;
	right: 22px;
	top: 0px;
	text-decoration: underline;
	font-size: 13px;
	text-transform: capitalize;
}


.progress-bar {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 4.5%;
	width: 0;
	height: 5px;
	border-radius: 25px;
	background-color: #4BB543;
}

.upload-button {
	font-family: 'Montserrat';
	background-color: #7b2cbf;
	color: #f7fff7;
	display: flex;
	align-items: center;
	font-size: 18px;
	border: none;
	border-radius: 20px;
	margin: 10px;
	padding: 7.5px 50px;
	cursor: pointer;
}