
form {
	position: relative;
	padding: 30px;
	min-width: 410px;
	max-width: 600px;
	border: 0px solid black;
	margin-left: auto;
	margin-right: auto;
}
.input {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 1em;
	max-width: 350px;
	width: calc(100% - 2em);
	vertical-align: top;
}

.input__field {
	position: relative;
	display: block;
	float: right;
	padding: 0.8em;
	width: 60%;
	border: none;
	border-radius: 0;
	background: #ffffff;
	color: #000000;
	font-weight: 400;
	font-family: 'poppins';
	-webkit-appearance: none; /* for box shadows to show on iOS */
}

.input__field:focus {
	outline: none;
}

.input__label {
	display: inline-block;
	float: right;
	padding: 0 1em;
	width: 40%;
	color: #000000;
	font-weight: bold;
	font-size: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.input__label-content {
	position: relative;
	display: block;
	padding: 0 0;
	width: 100%;
}

.graphic {
	position: absolute;
	top: 0;
	left: 0;
	fill: none;
}

.icon {
	color: #ddd;
	font-size: 150%;
}
.input__field--yoshiko {
	width: 100%;
	background-color: #ffffff;
	border: 2px solid #000000;
	-webkit-transition: background-color 0.25s, border-color 0.25s;
	transition: background-color 0.25s, border-color 0.25s;
}

.input__label--yoshiko {
	width: 100%;
	text-align: left;
	position: absolute;
	bottom: 100%;
	pointer-events: none;
	overflow: hidden;
	padding: 0 0;
	-webkit-transform: translate3d(0, 2em, 0);
	transform: translate3d(0, 2em, 0);
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

.input__label-content--yoshiko {
	color: #000000;
	padding: 0 0;
	-webkit-transition: -webkit-transform 0.25s;
	transition: transform 0.25s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}

.input__label-content--yoshiko::after {
	content: attr(data-content);
	position: absolute;
	font-weight: 800;
	bottom: 100%;
	left: 0;
	height: 100%;
	width: 100%;
	color: #000000;
	padding: 0 0;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 0.85em;
}
textarea[type="message"] {
	padding-top:2em;
	padding-left: 0.5em;
}
input:required + label::before {
  position: absolute;
  top:-.2em;
  right: 60px;
  content: "★";
  color: red;
}
input:required:valid + label::before {
  content: "✔";
  color: green;
}
textarea:focus {
	background-color: transparent;
	border-color: #ed4800;
}

.input__field--yoshiko:focus + .input__label--yoshiko, .input--filled .input__label--yoshiko {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.input__field--yoshiko:focus + .input__label--yoshiko .input__label-content--yoshiko, .input--filled .input__label-content--yoshiko {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}

.input__field--yoshiko:focus + .input__field--yoshiko, .input--filled .input__field--yoshiko {
	background-color: transparent;
	border-color: #ed4800;
}

input[type=submit] {
	position:relative;
	float:right;
	padding: 5px 15px;
	background: #000000;
	border: 0px #661e12 solid;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-family: 'Lemon', cursive;
	color: #ffffff;
}
input[type=submit]:hover {

	background: #ed4800;
	border: 2px #f8daae solid;
	cursor: pointer;
	color: #000000;
}