*{
	margin: 0;
	padding: 0;
}

body{
	background-color: black;
	color: white;
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	border: 3px solid white;
	margin: 60px;
	height: 100vh;
	text-align: center;
	font-family: 'Open Sans', sans-serif;
}

li{
	list-style-type: none;
}

a{
	text-decoration: none;
	color: #A832B3;
}

h1{
	font-size: 30px;
}

input[name="adressemail"], input[name="pseudo"]{
	padding: 12px 20px;
	margin: 8px 0;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	text-align: center;
}

#mail-zone, #pseudo-zone{
	display: flex;
	flex-direction: column;
}

#input-zone{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin-bottom: 50px;
}

form{
	display: flex;
	flex-direction: column;
	width: 50vw;
	margin: 0 auto;
	height: 100%;
	justify-content: center;
}

input[type="submit"]{
	width: 200px;
	padding: 20px 0px;
	text-align: center;
	margin-left: auto;
	margin-right: auto; 
	font-size: 20px;
	background-color: #A832B3;
	text-decoration: none;
	color: white;
	border-radius: 100px;
	border: none;
	font-family: 'Open Sans', sans-serif;
	cursor: pointer;
}

#or{
	position: relative;
	top: 20px;
	font-size: 50px;
}

img{
	height: 100%;
	width: 50%;
	margin: 0 auto;
}