/* Ecran d'accueil : choix du pseudonyme (views/fragments/accueil.html).
   Le composant "carte salon" (.salon_div, .salon_content, .inner_content)
   est partage avec le menu et vit dans commun.css. */

div#selection_pseudo {
	position: fixed;
	height: 95%;
	width: 100%;
	z-index: 999;
	top: 5%;
	justify-content: center;
	align-items: center;
	display: flex;
	color: white;
	font-family: "Comfortaa";
}

#salon_pseudo {
	display: none;
}

#intro_pseudo {
	font-size: 1.2em;
	padding-bottom: 0.3em;
}

#ligne_pseudo {
	display: flex;
	gap: 0.5em;
	width: 100%;
	align-items: stretch;
}

#ligne_pseudo input {
	flex: 1;
	min-width: 0;
}

#pseudo_aleatoire {
	width: auto;
	height: auto;
	padding: 0.3em 0.7em;
	margin: 0;
	font-size: 0.9em;
	background-color: #ea8b00;
	white-space: nowrap;
}

#erreur_pseudo {
	width: 100%;
	color: #ff9800;
	font-weight: bold;
	font-size: 0.8em;
}

#propositions_pseudo {
	text-align: justify;
	font-size: 0.8em;
}

#lien_pseudo {
	color: white;
	text-decoration: none;
}

#valider_pseudo {
	width: auto;
	padding: 0.5em 0.5em 0.5em 0.5em;
	height: auto;
	margin-top: 1em;
	margin-bottom: 1em;
}

@media (max-width: 520px) {
	#ligne_pseudo {
		flex-direction: column;
	}

	#pseudo_aleatoire {
		width: 100%;
	}
}
