body{
	margin: 0px;
	overflow: hidden;
}
.view{
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	row-gap: 10px;
}
.head{
	aspect-ratio: 3;
	display: flex;
	align-items: center;
	padding: 15px;
	color: white;
	background-image: url(../images/background.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
}
.form-item{
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	padding: 15px;
}
.form-item .title{
	font-size: 16px;
	color: #757575;
}
.form-item .content{
	overflow: hidden;
	border: solid 1px #999;
	display: flex;
	flex-direction: column;
}

.form-item .content textarea{
	border: none;
	padding: 10px;
	outline: 0;
	font-size: 14px;
}

.form-item .content input{
	border: none;
	padding: 10px;
	outline: 0;
	font-size: 14px;
}

.slogan{
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.slogan img{
	width: 80%;
	height: auto;
}
.form{
	flex:auto;
}
.footer{
	flex-shrink: 0;
	padding: 15px 15px 25px;
	display: flex;
	flex-direction: column;
}
button{
  background-color: #fe5e65;
  border: none;
  border-radius: 35px;
  padding: 15px 30px;
  color: white;
  font-size: 14px;
}