@charset "UTF-8";
div.loading {
	width: 100%;
	height: 100%;
	background-color: black;
	z-index: 100;
	background-image: url('../img/wait.gif');
	background-position: center;
	background-repeat: no-repeat;
	position: fixed;
	opacity: 0.5;
	font-size:24px;
	color:white;
	text-align:center;
	line-height:calc( 100vh + 120px );
	display:none;
}
div.passwordblock {
	display:flex;
}
div.passwordblock > input {
	flex:1;
}
div.passwordview {
	display: inline-block;
	width: 2.2em;
	height: 1.5em;
	background-image: url(../img/eye.svg);
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
	margin-left:-2.2em;
	margin-top:0.5em;
	cursor:pointer;
}
div.passwordview.slash {
	background-image: url(../img/eye-slash.svg);
}
.error-message {
	color:#EC4E20;
	font-weight:bold;
}
