<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ********************* */
/* Passcode verification */
/* ********************* */
/* The message box is shown when the user clicks on the password field */
.rules {
	position: relative;
	margin-bottom: 8px;
	padding: 8px 16px 16px;
	background: #e7f2f3;
	border: 1px solid #b3ddc6;
	border-radius: 4px;
}
.rules .help{
	margin: .5rem 0;
}

.rules .rule {
	padding-top : .5rem;
	font-size: 14px;
	font-weight: 500;
}
.rules .rule b { font-weight: 700; } 

.rule::before {
	position: relative;
	left: -.5rem;
	content: "âŒ";
}

/* Add a green text color and a checkmark when the requirements are right */
.rule.valid { color: #009966; }
.rule.valid::before { content: "âœ…"; }

/* Add a red text color and an "x" when the requirements are wrong */
.rule.invalid { color: #F03C5A; }


input.passcode {
	margin-top: auto;
	margin-bottom: auto;
	/* width: -moz-available;
	width: -webkit-fill-available; */
	width: auto;
}

.control-group input {
	width: 100%;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	min-height: 30px;
}

.control-group input[type="checkbox"],
.control-group input[type="radio"] {
	width: auto;
	min-height: auto;
}

.help-block {
	color : #b94a48;
}

.control-group .input-block-level input[type="radio"] {
	vertical-align: top;
}

/* Pour effacer la clÃ© de password dans safari */
/* input::-webkit-credentials-auto-fill-button {
    visibility: hidden;
} */

.password-eye {
	/* margin-left: -20px;  */
	margin-left: 5px;
	cursor: pointer;
	opacity: 0.5;
	vertical-align: middle;
	border: .5em solid white;
	border-radius: 50%;
}

.password-eye:hover {
	opacity: 1;
}

/* Floating eye &gt; right */
.control-group.pass { position: relative; }
.control-group.pass .password-eye { position: absolute; right: 4px; top: 2px; bottom: 2px; }
</pre></body></html>