.container
{
	display: flex;
	flex-direction: row;
	justify-content: center;
	width: 100%;
	margin-top: 30vh;
}
img
{
	width: 100%;
}
form
{
	width: 25rem;
	position: relative;
}
.image
{
	width: 500px;
	padding: 5px;
}
h1
{
	font-family: 'Caveat', cursive;
	color: #F64B8D;
}
span
{
	position: absolute;
	display: block;
	margin-top: 5px;
	right: 10px;
	color: #F64B8D;
}
form div
{
	border-bottom: .2em solid #FFD200;
	background:  rgba(255, 218, 51 , .3);
	margin-bottom: 1.5em;
}
input
{
	width: 90%;
	margin: 0 0 10px 20px;
	background: none;
	border: none;
	outline: none;
	font-size: 1rem;
}
::placeholder
{
	font-size: 1rem;
}

textarea
{
	resize: none;
	width: 100%;
	overflow: auto;
	outline: none;
	border: none;
	font-size: 1rem;
	border-bottom: .2em solid #FFD200;
	background:  rgba(255, 218, 51 , .3);
	margin-bottom: 1.5em;
}

button
{
	appearance: none;
	background: none;
	border: .2rem solid #F64B8D;
	border-radius: 2em;
	padding:  .75em 1em;
	color: #F64B8D;
	margin-left: 85%;
	transition: 0.6s;
}

button:hover, button:focus, button:active
{
	background: #F64B8D;
	color: #ffffff;
}