.login-box{
	position: fixed;
	z-index: 9999998;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100vh;
	background-image: linear-gradient(45deg,#9fbaa8,#31354c);
	transition: 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}


.login-form{
	position: absolute;
	width: 100%;
	top: 40%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: white;
	text-align: center;
}
.login-form h1{
  font-weight: 400;
  margin-top: 0;
}
.txtb{
  box-sizing: border-box;
  width: 240px;
  background: #ffffff;
  border: 1px solid white;
  padding: 10px 20px;
  color: #000000;
  outline: none;
  margin: 10px 0;
  border-radius: 6px;
  text-align: center;
  cursor: pointer;
}
.login-btn{
  width: 240px;
  background: #2c3e50;
  border: 0;
  color: white;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}
.hide-login-btn{
  color: #000;
  position: absolute;
  top: 80px;
  right: 40px;
  cursor: pointer;
  font-size: 24px;
  opacity: .7;
}

.showed{
  left: 0;
	transition: 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
