.concon {
	width: calc(100% - 20px);
	padding: 10px;
}

.logo-foot {
	width: 100%;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;

	margin-top: 80px;
	margin-bottom: 60px;
}
.logo-foot img {
	height: auto;
	width: 300px;
}

input, textarea, select {
	width: auto;
}

input[type="text"], select {
	border-bottom: 2px solid var(--priColor);
}
input[type="text"]:focus, select:focus {
	border-bottom-color: var(--secColor);
}

.mb20 {
	margin-bottom: 20px;
}

.incorrect {
	border-bottom: 2px solid var(--accSecColor) !important;
}

@media only screen and (max-width: 340px) {
	.logo-foot img {
		width: calc(100% - 40px);
	}

	input, textarea, select {
		width: 100%;
	}
}