body {
	background-color: var(--primary-600);
	background-image: url(/soffid/anonymous/bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

div.login {
	font-size: 12pt;
	background-color: white;
	opacity: 1;
	top: 50%;
	width: 300px;
    position: absolute;
    left: 50%;
	margin-top: -125px;
	padding: 30px;
	border-radius: 12px;
	transition: transform 0.5s;
	transform-style: preserve-3d ;
    transform: translateY(-50%)translateX(-50%);
    box-shadow: 0px 0px 48px var(--neutral-700);
	input[type="submit"],input[type="button"] {
		background-color: var(--fg-primary);
		color: var(--bg-primary);
	}
	
	input:focus {
	    box-shadow: 0px 0px 0px 2px #ffffff, 0px 0px 0px 4px var(--fg-primary);
	    outline: none;
	}
	
	input {
		margin-top: 12px;
		margin-bottom: 6px;
		width: 100%;
		margin-left: 0px;
		font-size: 14px;
		padding: 8px;
		border: none;
		border-radius: 8px;
		color: var(--bg-neutral);
		margin: 4px;
		border: solid 1px var(--input-border-default);
		border-radius: 8px;
		padding: 8px 12px 8px 12px; 
		box-sizing: border-box;
	}
}
div.login.loginprogress {
    transform: translateY(-50%)translateX(-50%)rotateX( 90deg );
}

div.login div.loginbox div.inputlogin {
	font-weight: bold;
}		
div.loginbox {
	width: 100%; 
}



div.wait {
	position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -96px;
    margin-left: -96px;
    background: #202020;
    
    border-radius: 12px;
    width: 250px;
    height: 192px;
    color: white;
    font-weight: bold;
	text-align: center;
	padding-top: 30px;
	transition: transform 0.5s;
	transform-style: preserve-3d ;
    transform: rotateX( 90deg );
}

div.wait p {
	font-weight: bold;
}
div.wait.loginprogress {
	display: block;
    transform: rotateX( 0deg );
}
div.wait img {
	margin-top: 30px;
	width: 48px;
	height: 48px;
}

div.login a {
	color: var(--primary-800);
	margin-top: 15px;
}

div.login a:visited {
	color: var(--primary-800);
	margin-top: 15px;
}


div.highlighted span {
	color: black;
}

div.login div.loginimage {
	width: 100%; height: 125px; text-align: center;
}

div.soffid-logo-corner {
	display: block;
	background-color: #0b4768;
	position: fixed;
	width: 150px;
	bottom: 0px;
	right: 0px;
	border: solid 10px #0b4768;
	border-top-left-radius: 15px;
	animation: linear;
	animation-name: appear-from-bottom;
	animation-duration: 1s;
}

@media only screen and (max-height: 599px) {
	div.login div.loginimage {
		display: none;
	}
}

@media only screen and (max-width: 600px) {
	div.soffid-logo-corner {
		display: none;
	}
}

@media only screen and (max-height: 799px) {
	div.login {
		margin-top: 0px;
	}
}


@keyframes appear-from-bottom {
    from {bottom: -100px; opacity: 1}
    to {bottom: 0px; opacity: 1}
}


