@charset "utf-8";
/* CSS Document */
/* -表單-------------------------------------------------------------------------------------------------------*/
.styled-input {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0px 0px 0px 0px; padding:0; list-style:none;
}
.styled-input li {
	width: 100%;
	margin: 20px 0px 0px 0px; padding:0; list-style:none;
	font-size: 16px; color:#666; 
}
.styled-input li.half {
	width: calc(50% - 10px);
}
.styled-input input[type="text"],
.styled-input input[type="tel"],
.styled-input input[type="email"],
.styled-input input[type="password"]{
	width:100%;
	padding: 15px 15px 15px 15px;
	height: 20px;
	color: #666;
	background-color: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border: none;        
	border: 1px solid #e0e0e0;

	border-radius: 0;
-webkit-appearance: none;

}
.styled-input textarea {
	width:100%;
	padding: 20px 15px;
	height: 10px;
	color: #666;
	background-color: none;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border: 1px solid #e0e0e0;

	border-radius: 0;
-webkit-appearance: none;

}
.styled-input input[type="text"].active,
.styled-input input[type="email"].active,
.styled-input textarea.active {
	padding: 15px 15px 15px 15px;
}
.styled-input textarea {
	resize: none;
	height: 150px;
	display: block;
}
.styled-input input[type="text"]:focus, .styled-input input[type="email"]:focus{
	border: 1px solid #c78c40;
	transition: 0.4s;
}
.styled-input textarea:focus{
	border: 1px solid #c78c40;
	transition: 0.4s;
}
.styled-input label {
	font-size: 16px; color:#666; margin: 0px 0px 5px 0px; line-height: 2;
}
.styled-input ::-webkit-input-placeholder { font-size: 16px; color:#888; }
.styled-input ::-moz-placeholder { color: #888; }
.styled-input :-ms-input-placeholder { color: #888; }
.styled-input :-moz-placeholder { color: #888; }
.styled-input .code {
	margin: 10px 0px 0px 0px;
    padding: 0 0 0 0px;
    display: flex;
    align-items: flex-end;
}
.styled-input .code .refresh img{
    width: 25px;
}
@media only screen and (min-width: 0px) and (max-width: 700px){
.styled-input li.half {
	width: 100%;
}
}

