@font-face
{
    font-family: 'Metropolis-Regular';
    src: url('Metropolis-Regular.otf');
}

body
{
  background: white;
  font-family: Metropolis-Regular;  
}

.wrapper
{
	margin-top: 80px;
  	margin-bottom: 80px;
}

.login_form
{
	max-width: 380px;
  	padding: 35px 35px 45px;
  	margin: 0 auto;
  	background-color: #fff;
  	border: 3px outset orange;
  	border-radius: 20px 20px;
}

.bouton {
	margin-top: 15px;
	margin-left: 100px;
	display: inline-block;
	background: orange;
	color: black;
	padding: 5px;
	text-transform: uppercase;
	border: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	font-family: Metropolis-Regular;
	width: 100px;
}

.bouton:hover {
	background: black;
	color: orange;
	cursor: pointer;
}