#baground{
	width: 100%;
	height: 500px;
	background-size: cover;
    background-position: center center;
}
#Registration{
	width: 900px;
	min-height: 300px;
	margin: auto;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,0.1);
	box-shadow: 0px 0px 8px rgb(0 0 0 / 10%);
	margin-top: 300px;
	position: relative;
	z-index: 9;
	text-align: center;
}
#Registration h1{
	width: 100%;
	text-align: center;
	margin-top: -40px;
}
.text_input{
	width: 400px;
	display: inline-block;
	margin: 10px 20px;
}
.text_input input{
	width: 400px;
	height: 50px;
	border: 2px solid  #e9e8f1;
	border-radius: 5px;
	padding: 5px;
	box-sizing: border-box;
	outline: none;
}
.text_input input:focus{
	border: 2px solid  #70c04f;
}
.text_input input::placeholder {
	color: #d1d1d8;
	font-size: 1em;
	font-family: 'bpg_nino_medium_capsregular';
	font-weight: bold;
}
.send{
	width: 95%;
	height: 50px;
	border: 2px solid #70c04f;
	border-radius: 30px;
	background-color: #70c04f;
	outline: none;
	color: #fff;
	font-size: 13px;
	margin-top: 10px;
	margin-left: 0;
	box-shadow: 0 7px 10px 2px rgb(0 0 0 / 1%);
	padding: 1px 30px;
	-webkit-box-shadow: 0 0 45px 0 rgb(0 0 0 / 5%);
	box-shadow: 0 0 45px 0 rgb(0 0 0 / 5%);
	-webkit-transition: all .4s;
	-moz-transition: all .4s;
	-o-transition: all .4s;
	transition: all .4s;
	cursor: pointer;
	font-family: "BPG Arial Caps", sans-serif;
}
.send:hover{
	background-color: transparent;
	color: #024705;
}
.recaptcha{
	border-radius: 10px;
	margin-left: 30px;
}
	
 
@media only screen and (max-width: 1350px) {
	#Registration{
		width: 380px;
	}
	.text_input,.text_input input{
		width: 330px;
	}

}