html, body {
	margin: 0;
	padding: 0;
}

.wrapper {
	height: 100vh;
	display: flex;
	justify-content: center;
	background: lightblue;
}

.import {
	max-width: 1000px;
	min-width: 600px;
	background: white;
	padding: 60px;
	margin-top: 40px;
	margin-bottom: 40px;
	overflow: auto;
}

.database {
	width: 50%;
	float: left;
}

.file {
	width: 50%;
	float: right;
}

.database input, .file imput,
.database select, .file select {
	display: block;
	width: 90%;
	margin-bottom: 10px;
}

.success,
.error {
	padding: 10px;
	color: white;
}

.success {
	background: green;
}
.error {
	background: red;
}