/*
 * Login
 * v1.0
 *
 * one.68000.fr
 */


.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,1);
}

.navbar {
    background-color: rgb(71 71 71 / 23%);
    backdrop-filter: blur(15px);
}

.loginWrapper {
	display: none;
	position:fixed;
	z-index: 30000;
} 
.loginOverlay {
	cursor: wait;
	background: #383c48;
  opacity: 0.8;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 480px) {
	.loginOverlay {
		display:none;
	}
}
.loginAdminFx {
  height: calc(100% - 80px);
  background:rgb(0 0 0 / 80%);
  color: white;
  padding: 1em;
	flex-flow: column;
	display: flex;
}
.loginAdminFx textarea {
  color: white;
}
.loginContainer {
	margin-top: 50px;
  margin-left: calc(50% - 250px);
  position: fixed;
  z-index: 20;
  width: 100%;
  max-width: 500px;
  height: calc(100vh - 100px);
}
@media (max-width: 480px) {
	.loginContainer {
		margin:0;
		width: 100%;
    height: 100%;
	}
}
@media (min-width: 481px) {
	.loginContainer {
		box-shadow: 0px 0px 24px black;
	}
}

.loginHeader {
	height: 40px;
	background: rgba(0, 0, 0, 0.8);
	text-align: right;
	text-transform: uppercase;
	padding: 0.5em;
}
.loginHeader a {
	color: white;
}

.loginFooter {
	height: 40px;
	background: rgba(0, 0, 0, 0.8);
	text-align: center;
	padding: 0.5em;
}
.loginFooter #loginMsg {
	color: orange;
}

.loginDots {
  height: calc(100% - 80px);
  background:rgba(0, 0, 0, 0.8);
  flex-wrap: wrap;
  display: flex;
  padding: 1em;
} 

.loginItem {
	width: calc(100%/3);
	justify-content: center;
    display: flex;
    align-items: center;
}
.loginItem div {
	cursor: grab;
	opacity: 0.9;
	filter: saturate(0.8);
	width: 75px;
  height: 75px;
  border-radius: 100%;
  transition: all 1s;
}
.loginItem div:hover {
	opacity: 1;
	filter: saturate(1);
	background-color:lightyellow !important;
}
.loginItem div.on {
    animation: animClick 1s linear forwards;
    animation-iteration-count: 1;
}
@keyframes animClick {
	0% {
		opacity: 0.9;
		filter: saturate(0.8);
	}
	50% {
		opacity: 1;
		filter: saturate(1);
		box-shadow: 0 0 10px white;
		background-color:#ffffff;
	}
	100% {
		background-color:#2f2f2f;
	}
}
