@charset "UTF-8";

/*/////-----FORM-PARTS-----/////*/

input[type="text"]{
	width:100%;
	max-width: 480px;
	
	font-size:1.0rem;
	line-height:20px;
	
	box-sizing: border-box;
	padding: 10px;
	border: solid 1px #f0f0f0;
	
	border-radius: 0;
	outline: none;
	
	background-color:#f8f8f8;
	color:#000;
	box-shadow: none;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

span.height input[type="text"]{
	max-width: 120px;
}

span.height::after{
	content:"cm";
	
	display:inline-block;
	
	box-sizing: border-box;
	padding:0 5px;
}

span.weight input[type="text"]{
	max-width: 120px;
}

span.weight::after{
	content:"kg";
	
	display:inline-block;
	
	box-sizing: border-box;
	padding:0 5px;
}

span.age input[type="text"]{
	max-width: 120px;
}

input[type="tel"]{
	width:100%;
	max-width: 240px;
	
	font-size:1.0rem;
	line-height:20px;
	
	box-sizing: border-box;
	padding: 10px;
	border: solid 1px #f0f0f0;
	
	border-radius: 0;
	outline: none;
	
	background-color:#f8f8f8;
	color:#000;
	box-shadow: none;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="email"]{
	width:100%;
	max-width: 480px;
	
	font-size:1.0rem;
	line-height:20px;
	
	box-sizing: border-box;
	padding: 10px;
	border: solid 1px #f0f0f0;
	
	border-radius: 0;
	outline: none;
	
	background-color:#f8f8f8;
	color:#000;
	box-shadow: none;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select{
	width:auto;
	max-width: 480px;
	
	font-size:1.0rem;
	line-height:20px;
	
	box-sizing: border-box;
	padding: 10px;
	padding-right:30px;
	border: solid 1px #f0f0f0;
	
	border-radius: 0;
	outline: none;
	
	background-color:#f8f8f8;
	color:#000;
	box-shadow: none;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	background-image: url("../../../images/_assets-page/_assets-common/icon-select-down.webp");
	background-repeat: no-repeat;
	background-size:10px;
	background-position: center right 10px;
	
	position: relative;
}

textarea{
	width:100%;
	max-width: 480px;
	
	min-height: 120px;
	
	font-size:1.0rem;
	line-height:20px;
	
	box-sizing: border-box;
	padding: 10px;
	border: solid 1px #f0f0f0;
	
	border-radius: 0;
	outline: none;
	
	background-color:#f8f8f8;
	color:#000;
	box-shadow: none;
	
	resize: vertical;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="submit"]{
	width:100%;
	
	font-size:1.0rem;
	line-height:50px;
	font-weight:bold;
	
	background-color:#fd5e53;
	border:solid 1px #fd5e53;
	border-radius:2.5px;
	color:#fff;
	cursor: pointer;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	transition:0.25s;
}

input[type="submit"]:hover{
	background-color:#fff;
	color:#fd5e53;
	
	text-decoration: none;
}

input[type="reset"]{
	width:100%;
	
	font-size:1.0rem;
	line-height:50px;
	font-weight:bold;
	
	background-color:#5f161d;
	border:solid 1px #5f161d;
	border-radius:2.5px;
	color:#fff;
	cursor: pointer;
	
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	
	transition:0.25s;
}

input[type="reset"]:hover{
	background-color:#fff;
	color:#5f161d;
	text-decoration: none;
}
