body,html
{
	width:100%;
	height:100vh;
}
*
{
	margin:0;
	padding:0;
	box-sizing: border-box;
	font-family: 'Roboto', sans-serif;
}

a,a:hover,a:visited,a:focus
{
	color:inherit;
	text-decoration: none;
}
body
{
	background:url(/media/images/background.png);
	padding-top:100px;
	border-bottom:solid 10px #009EFF;
}
.formbox
{
	width:400px;
	background:white;
	margin:auto;
	box-shadow: 0px 0px 150px -40px rgba(0,0,0,0.75);
	padding:20px 20px 50px 20px;
	transition:0.25s;
}
.formboxvalide
{
	opacity:0;
}
.formrow_image
{
	width:100%;
	display: inline-block;
	text-align: center;
}
.formrow_image img
{
	margin: 20px;
}
.formbox p
{
	font-size: 18pt;
	text-align: center;
	font-weight: 300;
	margin-bottom:50px;
}
.formrow
{
	display: inline-block;
	width:100%;
	margin-bottom:20px;
}
.formrow label
{
	display: inline-block;
	width :100%;
	padding:5px;
	font-size:10pt;
}
.inputconnect
{
	width :100%;
	padding:5px 10px;
	font-size:14pt;
	border-radius: 20px;
	background:none;
	border:solid 1px lightgrey;
	outline: none;
	margin-top:5px;
	text-align: center;
	transition:0.5s;
}
.connectbutton
{
	width:100%;
	padding:8px;
	font-size:12pt;
	border-radius: 20px;
	background:none;
	border:solid 1px lightgrey;
	outline: none;
	margin-top:5px;
	text-align: center;
	background: #272c32;
	color:white;
	cursor:pointer;
	font-weight: 300;
}
.formrow_result
{
	display: inline-block;
	width:100%;
	color:indianred;
	font-size:10pt;
	text-align:center;
}