html, body{
	background: url('/img/bglogin.jpeg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: auto;
    margin: 0;
    padding: 0;
    font-family: Roboto, Tahoma, Geneva, sans-serif;
    font-size: 12px;
    /*-webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;*/
}

.overlay{
	position:fixed;
	left: 0px;
	top: 0px;
	z-index:1001;
	width:100%;
	height:100%;
	background:rgba(0,0,0,.6)
}


.loginbox{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 440px;
	margin-top: -220px;
	margin-left: -200px;
	background: white;
	border-radius: 6px;
	z-index: 1;
}

.selectdb{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 500px;
	height: 216px;
	margin-top: -108px;
	margin-left: -250px;
	background: white;
	border-radius: 6px;
	z-index: 2;
	display: none;
}

#close_selectdb{
	position: absolute;
	top: 10px;
	right: 10px;
	width: 20px;
	cursor: pointer;
	padding: 4px;
	border-radius: 4px;
	border: 1px solid white;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	z-index: 10;
	opacity: 0.3;
}

#close_selectdb:hover{
	border: 1px solid rgb(68, 130, 255) !important;
	opacity: 1.0;
}

.lblboss{
	position: absolute;
	left: 0px; top: 30px; right: 0px;
	font-size: 22px; text-align: center;
}

#email{
	position: absolute;
	top: 84px;
	left: 30px;
	right: 30px;
	height: 28px;
	padding:6px 10px;
	border: 1px solid rgb(217, 217, 217);
	border-radius: 4px;
	outline:none;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

#email:hover {
   border: 1px solid rgb(68, 130, 255) !important;
}

#password{
	position: absolute;
	top: 140px;
	left: 30px;
	right: 30px;
	height: 28px;
	padding:6px 10px;
	border: 1px solid rgb(217, 217, 217);
	border-radius: 4px;
	outline:none;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	text-shadow: rgb(0 0 0 / 0%) 1px 1px 1px;
}

#password:hover {
   border: 1px solid rgb(68, 130, 255) !important;
}

#submit{
	position: absolute;
	top: 198px;
	left: 30px;
	width: 170px;
	height: 42px;
	line-height: 40px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	color: #fff;
	background: #4482ff;
	box-shadow: 0 2px 0 rgb(0 0 0 / 5%);
	text-shadow: 0 -1px 0 rgb(0 0 0 / 12%);
	border: 0px;
    font-size: 14px;
    border-radius: 4px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

#submit:hover {
   background: rgb(110, 163, 255);
}

.forgot{
	position: absolute;
	top: 212px;
	right: 30px;
	color: rgb(68, 130, 255);
	font-size: 14px;
	cursor: pointer;
}
.signup{
	position: absolute;
	top: 260px;
	left: 0px;
	right: 0px;
	text-align: center;
	color: rgb(68, 130, 255);
	font-size: 14px;
	cursor: pointer;
}

.altbutton{
	height: 40px; border: 2px solid #d0d0d0; border-radius: 6px; cursor: pointer; line-height: 40px; font-size: 16px; text-align: center;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	text-decoration: none; color: inherit;
}
.altbutton img{
	position: absolute; top: 6px; left: 15px; height: 28px;
}
.altbutton:hover {
   border: 2px solid rgb(110, 163, 255);
}

#snackbar {
  visibility: hidden;
  width: 350px;
  margin-left: -191px;
  margin-top: 94px;
  background-color: red;
  color: white;
  text-align: center;
  border-radius: 8px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 50%;
  font-size: 17px;
  cursor: pointer;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#snackbar_blue {
	visibility: hidden;
	width: 350px;
	border: 4px solid rgb(68, 130, 255);
	background-color: white;
	color: #555;
	text-align: center;
	padding: 16px;
	position: absolute;
	z-index: 1000009;
	right: 50px;
	top: 150px;
	font-size: 17px;
	border-radius: 14px;
	cursor: pointer;
}

#snackbar_blue.show {
	/*visibility: visible;*/
	/*-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;*/
	animation: 0.5s fadeIn;
	animation-fill-mode: forwards;
}
@keyframes fadeIn {
  0% {
    
	opacity: 0;
  }
  100% {
    visibility: visible;
    
	opacity: 1;
  }
}

#dbs{
	position: absolute;
	top: 84px;
	left: 30px;
	right: 27px;
	bottom: 40px;
	padding-right: 3px;
	border: 0px solid rgb(217, 217, 217);
	border-radius: 4px;
	outline:none;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	overflow: auto;
}
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(68, 130, 255); 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.db{
	border: 1px solid rgb(217, 217, 217);
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	padding: 10px 6px;
	border-radius: 4px;
	cursor: pointer;
	display: block;
	margin-bottom: 6px;
	background-color: rgb(240, 240, 240);
	white-space: nowrap; text-overflow: ellipsis; overflow: hidden;
}


.db:hover{
	border: 1px solid rgb(68, 130, 255) !important;
	background-color: rgb(255, 255, 255) !important;
}

.txt{
	padding:6px 10px;
	border: 1px solid rgb(217, 217, 217);
	border-radius: 4px;
	outline:none;
	font-size: 14px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.txt:hover {
   border: 1px solid rgb(68, 130, 255) !important;
}

.labelbtn{
	padding: 6px; border-radius: 4px; border: 1px solid #fff; color: #aaa; font-size: 14px;  cursor: pointer;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.labelbtn:hover{
	color: rgb(68, 130, 255) !important;
	border: 1px solid rgb(68, 130, 255) !important;
}
.btn{
	height: 42px;
	line-height: 40px;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	color: #fff;
	background: #4482ff;
	box-shadow: 0 2px 0 rgb(0 0 0 / 5%);
	text-shadow: 0 -1px 0 rgb(0 0 0 / 12%);
	border: 0px;
    font-size: 14px;
    border-radius: 4px;
	transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

.btn:hover {
   background: rgb(110, 163, 255);
}