body{
	font-family: sans-serif;
}

h1{
	font-size: clamp(1em, 3em, 3em);
	text-align: center;
	text-transform: uppercase;
	padding-top: 1em;
}

#pwdgen_form{
	max-width: 500px;
	margin: auto;
}

#pwdgen_form fieldset{
	padding: 2em;
	border-color: #e6e6e6;
}

#pwdgen_form label,
#pwdgen_form select,
#pwdgen_form input[type=button]{
	display: block;
}

#pwdgen_form label input{
	width: 15px;
	padding: .5em;
	text-align: center;
	border: solid 1px orange;
}

#pwdgen_form select{
	padding: .5em;
	border-color: orange;
}

#pwdgen_form section{
	display: flex;
	justify-content: center;
	align-items: center;
}

#pwdgen_form section > *{
	margin: 0 .5em;
}

#pwdgen_form input[type=button]{
	background-color: orange;
	padding: 1em;
	margin: 2em auto 0;
	border: none;
	color: white;
}

.resultat{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.result{
	text-align: center;
	font-weight: normal;
}

.information{
	font-style: italic;
	font-size: .65em;
	text-align: center;
}

#copy{
	margin: auto;
	border: none;
	background-color: #e6e6e6;
	padding: 1em 2em;
	color: gray;
	display: none;
}

#copy.visible,
.visible{
	display: block;
}

.hidden{
	display: none;
}