html, body {
	height: 100%
}

body {
	font-family: "Monaco", "DejaVu Sans Mono", "Lucida Console", "Andale Mono", "monospace";	
	display: flex;
	margin: 0;
	width: 100%;
	height: 100%;
}

#backgroundColorOrGradient, #backgroundImage, #formOffset {
	display: flex;
	width: 100%;
	height: 100%;
}

#particles-js {
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#credentialsForm {
	display: flex;
	flex-direction: column;
	margin: auto;
	flex: 0 0 auto;
	background-color: whitesmoke;
	padding: 1rem;
	border: 5px double gray;
	border-radius: 1rem;
	z-index: 9999;
	gap:1rem;
	max-height: 90vh;
}

form {
	display: flex;
    flex-direction: column;
    margin: auto;
	/*flex: 1 1 0; empêche l'agrandissement du select*/ 
	overflow: auto;
}

#loginUrl {
	/*overflow: scroll;*/
}

h1, h2, p {
	margin: auto;
}

#incorrectCredentialsWarning {
	font-size: .8rem;
    padding: 1rem;
	font-weight: bold;
	color: firebrick;
}

select {
	/* min-height: 5rem; */
	display: flex !important;
	flex: 1 1 auto !important;
}