.form-wrapper {
	position: relative;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 900px;
}
.comment {
	text-align: center;
	background-color: #eee;
	margin: 20px 0;
	padding: 10px;
	font-size: 1.2rem;
}
.form-errmsg {
	display: block;
	text-align: center;
	margin: 30px auto 20px;
	color: var(--errmsg-color);
	font-size: 1.2rem;
	font-weight: bold;
}
.inputWithLabel {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	height: auto;
	align-items: center;
}
.noinputLabel {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	height: auto;
}
.inputWithLabel label{
	flex: 1;
	margin: 8px 0;
	padding: 8px 0;
	font-size: 1.2rem;
	height: 100%;
}
.noinputLabel label{
	flex: 1;
	margin: 0;
	padding: 0;
}
.inputWithLabel label span {
	flex: 1;
	justify-content: center;
	margin: 8px 8px;
	color: var(--errmsg-color);
}
.noinputLabel label span {
	flex: 1;
	margin: 0;
	padding: 0;
	font-size: 1rem;
	color: var(--errmsg-color);
}
.noinputLabel p {
	font-size: 1rem;
}
.remarks{
	flex: 1;
	justify-content: center;
	margin: 8px 8px;
	padding: 8px 0;
	font-size: 0.8rem;
	height: 100%;
}
.noinputLabel span{
	flex: 1;
	margin: 0;
	padding: 0;
}
.inputNoBorder input[type="text"],
.inputNoBorder input[type="number"],
.inputNoBorder textarea {
	/* pointer-events: none; */
	border: none;
	background-color: #fff;
}
.inputNoBorder input[type="text"]:focus,
.inputNoBorder input[type="number"]:focus,
.inputNoBorder textarea:focus {
	border-color: #fff;
	box-shadow: none;
}
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="file"],
select,
textarea {
	flex: 2;
	width: 100%;
	border: 1px solid var(--main-color);
	border-radius: 4px;
	margin: 8px 0;
	outline: none;
	padding: 8px;
	box-sizing: border-box;
	align-items: center;
	/* box-shadow: 0px 0px 3px #ff2a2a; */
	transition: 0.3s;
	resize: none;
	font-family: inherit;
	font-size: 13px;
}
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="file"] {
	height: 40px;
	text-overflow: ellipsis;
}
textarea {
	height: 100px;
}
input[type="text"]:focus,
input[type="number"],
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus  {
	border-color: dodgerBlue;
	box-shadow: 0 0 3px 0 dodgerBlue;
}
.inputWithLabel input[type="button"] {
	border-radius: 1px;
	position: relative;
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin: 8px auto;
	max-width: 220px;
	padding: 8px 25px;
	color: #FFF;
	transition: 0.3s ease-in-out;
	font-weight: 700;
	border: 0;
	background: var(--main-color);
}
.inputWithLabel input[type="file"] {
	display: none;
}

#form-submit,
#form-submit-approach,
#form-submit_dev,
#form-submit_dev2
 {
	font-size: 18px;
	background: var(--submit-color);
}
.bt4file {
	cursor: pointer;
	display: inline-block;text-decoration: none;border: none;
	font-size: 1.2rem;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	background: var(--main-color);
	letter-spacing: 0.1em;
	color: #fff;
	transition: 0.3s;
	padding: 1em 2em;
	margin: 0 auto;
	text-align: center;
}
.pattached2_name {
	flex: 2;
	width: 100%;
	text-align: center;
}
.rows-15 {
	height: calc( 1.3rem * 15 );
	line-height: 1.3;
}

#dialog-confirm {
	display: none;
	font-size: 1.2rem;
}
#dialog-back-confirm {
	display: none;
	font-size: 1.2rem;
}

#input-link {
	cursor: pointer;
	text-decoration: underline; 
}

@media screen and (max-width:428px) {
	.remarks {
		display: none;
	}
	.inputWithLabel label span {
		flex: 1;
		justify-content: center;
		margin: 8px 8px;
		color: var(--errmsg-color);
	}
}