.wrapper{
	width: 60%;
	margin: 0 auto;
	border: 5px solid #ddd;

}

label{
	font-size: 25px;
}
h2{
	text-align: center;
	font-size: 30px;
	color: yellowgreen;
}

.full_name, .fathers_name, .mothers_name, .date, .email, .password{
	width: 50%;
	height: 20px;
	padding: 10px;
	font-size: 16px;
}
span{
	font-size: 20px;
}

::placeholder{
	color: green;
}

button{
font-size: 25px;
background-color: black;
color: yellow;
transition: 1s;
}

button:hover{
	background-color: green;
	color: white;
	border-radius: 2px;
	transition: 0.5s;
}