.kt-submission-form {
	max-width: 720px;
	margin: 40px auto;
}

.kt-upload-box {
	border: 2px dashed #cfd8dc;
	border-radius: 14px;
	padding: 45px 30px;
	text-align: center;
	background: #fafafa;
	cursor: pointer;
	transition: .25s;
}

.kt-upload-box:hover {
	border-color: #2271b1;
	background: #f5faff;
}

.kt-upload-box.is-dragover {
	border-color: #2271b1;
	background: #eef7ff;
	transform: scale(1.01);
}

.kt-upload-icon {
	font-size: 64px;
	margin-bottom: 15px;
}

.kt-upload-box h2 {
	margin: 0 0 12px;
	font-size: 26px;
	font-weight: 600;
}

.kt-upload-box p {
	margin: 0 0 25px;
	color: #666;
	line-height: 1.6;
}

.kt-upload-button {
	display: inline-block;
	padding: 12px 26px;
	border-radius: 8px;
	background: #2271b1;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: .2s;
	user-select: none;
}

.kt-upload-button:hover {
	background: #135e96;
}

.kt-field {
	margin-top: 28px;
}

.kt-field label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

.kt-field input[type=text] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ccd0d4;
	border-radius: 8px;
	font-size: 15px;
	box-sizing: border-box;
	transition: .2s;
}

.kt-field input[type=text]:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 3px rgba(34,113,177,.15);
}

.kt-submit {
	margin-top: 35px;
	text-align: center;
}

.kt-submit button {
	padding: 14px 34px;
	font-size: 16px;
	font-weight: 600;
	border: 0;
	border-radius: 8px;
	background: #2271b1;
	color: #fff;
	cursor: pointer;
	transition: .2s;
}

.kt-submit button:hover {
	background: #135e96;
}

/* ==========================================
   Preview
========================================== */

.kt-preview {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.kt-preview-image {
	width: 180px;
	height: 180px;
	object-fit: contain;
	background:
		linear-gradient(45deg,#eee 25%,transparent 25%),
		linear-gradient(-45deg,#eee 25%,transparent 25%),
		linear-gradient(45deg,transparent 75%,#eee 75%),
		linear-gradient(-45deg,transparent 75%,#eee 75%);
	background-size: 20px 20px;
	background-position: 0 0,0 10px,10px -10px,-10px 0;
	border-radius: 10px;
	border: 1px solid #ddd;
	padding: 12px;
	margin-bottom: 18px;
}

.kt-preview-name {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px;
	word-break: break-word;
}

.kt-preview-meta {
	color: #666;
	margin-bottom: 24px;
	font-size: 14px;
}