body
{
	margin: 0;
	padding: 0;
}

.head
{
	text-align: center;
	font font-weight: bold;
	color: greenyellow;
	background-color: #27ae60;
	padding: 10px;
}
.center
{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 400px;
	border: 2px solid #27ae60;
	border-radius: 10px;
}
.center h1
{
	padding: 20px;
	text-align: center;
	border-bottom: 1px solid #27ae60;
}
.form
{
	padding-bottom: 15px;
	margin: 0 20px;
	text-align: center;
}
.inputtext
{
	width: 100%;
	height: 40px;
	font-size: 20px;
	border: 2px solid #27ae60;
	border-radius: 5px;
	box-sizing: border-box;
	padding-left: 10px;
	margin: 7px 0;
}
button.btn
{
  width: 100%;
  background-color: #27ae60;
  border: 1px solid #27ae60;
  color: white;
	font-weight: bold;
	margin: 5px 0;
}

button.btn:hover
{
	color: #27ae60;
	border: 1px solid #27ae60;
}
.link
{
	text-decoration: none;
	color: #27ae60;
}