/* Ajout de styles basiques */
body, html {
	font-family: Arial, sans-serif;
	height: 100%;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

body {
	background: rgb(0,147,233);background: linear-gradient(160deg, rgba(0,147,233,1) 0%, rgba(128,208,199,1) 100%);
}

.container {
	text-align: center;
	background-color: white;
	padding: 10% 25%;
	border-radius: 10px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

h1 {
	font-size: 2.5em;
	margin-bottom: 20px;
}

.btn-discord, .btn-steam, .btn-valider-gris, .btn-valider-vert, .btn-connexion-validee {
	display: inline-block;
	text-decoration: none;
	color: white;
	padding: 15px 30px;
	font-size: 1.2em;
	border-radius: 5px;
	margin: 5px 0; /* Marges ajoutées pour espacer les boutons */
	width: 100%;
	max-width: 300px; /* Limite la largeur des boutons */
}

.btn-discord {
	background-color: #5865F2;
}

.btn-steam {
	background-color: #171A21;
}

.btn-connexion-validee {
	background-color: #008000;
	opacity: 0.5;
}

.btn-valider-gris {
	background-color: #808080;
	opacity: 0.4;
}

.btn-valider-vert {
	background-color: #008000;
}

.btn-discord, .btn-steam, .btn-valider-vert {
	opacity: 0.9;
}

img {
	max-width: 200px;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.container {
		padding: 20px;
		width: 100%;
		box-sizing: border-box;
	}

	h1 {
		font-size: 1.8em;
	}

	.btn-discord, .btn-steam, .btn-valider-gris, .btn-valider-vert, .btn-connexion-validee {
		font-size: 1em;
		padding: 12px 20px;
		width: 80%;
	}
}
