:root{
    --blue:rgb(0, 158, 227);
    --white:#fff;
    --darkgrey:#333;
    --darkgreyt:rgba(41, 41, 41, 0.8);
    --lightgrey:#eee;
    --green:#008D36;
    --red:#8D3600;
    --lightgreen:#71cf95;
    --lightred:#e79d6e;
    --yellow:#8b8d00;
    --middlegrey:#555;
    --orange:#8f6900;
}body,html{
	margin:0;
	padding:0;
}
body{
	background-position: center;
	background-size: cover;
	height: 100vh;
	background-repeat: no-repeat;
	background-color:var(--darkgrey);
}
.start #content{
	display:grid;
	align-items: center;
	justify-items: center;
	grid-template-rows: 1fr;
	grid-template-columns: 1fr;
	width:100%;
	height:100%;
	background-color: var(--darkgreyt);
}
.start{
	background-image: url("/img/bg-min.jpg");	
}
.start::after{
	background-color: var(--darkgrey);
	width:100%;
	height:100%;
}
a{
	cursor:pointer;
}
.hide{
	display:none!important;
}
.LogoField{
	text-align:center;
}
.TopSpacer{
	height:50px
}
input {
	font-size: 16px;
	padding: 10px;
	-webkit-appearance: none;
	display: block;
	color: var(--darkgrey);
	width: 100%;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid var(--darkgrey);
}
input:focus {
	outline: none;
}
label {
	font-size: 16px;
	font-weight: bold;
	position: absolute;
	pointer-events: none;
	left: 0px;
	top: 10px;
	transition: all 0.2s ease;
	padding-left:10px;
}
input:focus ~ label, input.used ~ label {
	top: -25px;
	left: -12px;
	font-size: 18px;
	background-color:var(--green);
	color:var(--lightgrey);
	padding:4px 8px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
input:focus ~ .bar:before, input:focus ~ .bar:after {
	width: 50%;
}
.loginDiv {
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
	-webkit-border-bottom-right-radius: 50px;
	-moz-border-radius-bottomright: 50px;
	border-bottom-right-radius: 50px;
	-webkit-border-top-left-radius: 50px;
	-moz-border-radius-topleft: 50px;
	border-top-left-radius: 50px;			
	box-shadow: 0 0 10px var(--middlegrey);
	background-color: rgba(255,255,255,0.1);
	backdrop-filter: blur(8px);
	overflow:hidden;
}		
.user-logo {
	height: auto;
	max-height: 150px;
	margin: 0 auto;
	padding-top: 40px;
	padding-bottom: 20px;
	width: 95%;
}
.group {
	position: relative;
	margin: 20px 20px 40px;
}
.failureMessage {
	color: var(--red);
	display: block;
	text-align: center;
	padding: 0px 0px 10px;
}
.successMessage {
	color: var(--green);
	display: block;
	text-align: center;
	padding: 0px 0px 10px;
}
.bar {
	position: relative;
	display: block;
	width: 100%;
}
.bar:before, .bar:after {
	content: '';
	width: 0;
	bottom: 1px;
	position: absolute;
	height: 1px;
	background: var(--green);
	transition: all 0.2s ease;
}
.bar:before {
	left: 50%;
}
.bar:after {
	right: 50%;
}