body .bg{
	background-color: rgba(0,0,0,0.5);
	position: fixed;
	width: 100vw;
	height: 100vh;
	transform: scale(1.1,1.1);
	z-index: -10;
}
.mySlides{
	position: absolute;
	display: none;
	width: 100vw;
	height: 100vh;
	top: 0;left: 0;
	background-color: rgba(10,10,10,0.4);
	background-blend-mode: overlay;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	animation: bgZoom 10s linear;
}
@keyframes bgZoom{
	0%{transform: scale(1,1);}
	100%{transform: scale(1.05,1.05);}
}
@-webkit-keyframes bgZoom{
	0%{transform: scale(1,1);}
	100%{transform: scale(1.05,1.05);}
}
.sli0{
	transform-origin: top;
	background-image: url(../imgs/bg-img/login_slides/1.JPG);
}
.sli1{
	transform-origin: bottom;
	background-image: url(../imgs/bg-img/login_slides/2.JPG);
}
.sli2{
	transform-origin: left;
	background-image: url(../imgs/bg-img/login_slides/3.JPG);
}
.sli3{
	transform-origin: right;
	background-image: url(../imgs/bg-img/login_slides/4.JPG);
}
.sli4{
	transform-origin: top left;
	background-image: url(../imgs/bg-img/login_slides/5.JPG);
}
.sli5{
	transform-origin: bottom right;
	background-image: url(../imgs/bg-img/login_slides/6.JPG);
}
.sli6{
	transform-origin: center;
	background-image: url(../imgs/bg-img/login_slides/11.JPG);
}
.sli7{
	transform-origin: top right;
	background-image: url(../imgs/bg-img/login_slides/8.JPG);
}
.sli8{
	transform-origin: bottom left;
	background-image: url(../imgs/bg-img/login_slides/9.JPG);
}
body{
	position: relative;
	min-height: 100vh;
	width:100vw;
	z-index: -888;
}
header{
	background: transparent;
}
header ul li a {
	opacity: 1;
}
input::selection{
	background-color: rgba(20,25,30,0.2);
}
.section-one{
	height: auto;
	overflow: visible;
	z-index: 99;
}
#form{
	text-align: center;
	padding: 3rem;
	width: auto;
	max-width: 350px;
	height: auto;
	margin: 5em auto;
	background-color: rgba(0,0,0,0.4);
	backdrop-filter:blur(4px) grayscale(30%);
	border-radius: 12px;
}
#form h1{
	margin-bottom: 2.5rem;
	font-family: monte;
	color: #eee;
	font-size: 1.75rem;
}
#form > div{
	margin: 1em 0;
}
#form input{
	width: 100%;
	padding: 0.55em 1.5rem;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,0.3);
	background-color: rgba(200,200,200,1);
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 0.9rem;
}

#form input:-webkit-autofill{
	-webkit-box-shadow: 0 0 0px 1000px rgba(200,200,200,1) inset;
}
#form input::placeholder{
	color: rgba(0,0,0,1);
}
#form input:placeholder-shown{
	background-color: rgba(250,250,250,0.4);
}
#form input:hover::placeholder,
#form input:focus::placeholder{
	color:rgba(0,0,0,0.9);
}
#form input:hover{
	background: #ffffffaa;
}
#form .signup{
	font-family: sans-serif;
	font-size: 0.8em;
	color: #232323aa;
	text-align: left;
	padding-left: 0.5rem;
	color: #aaaaaa;
}
#form .signup a{
	color: #aaaaaa;
	transition: all 100ms linear;
}
#form .signup a.link{
	font-weight: bold;
}
#form .signup a:hover{
	color: #eeeeee;
	text-decoration: underline;
}

#form a{
	text-decoration: none;
}
#form a:focus{
	color: #232323;
	outline: 1px solid #3338;
}

#form button{
	margin-top: 1rem;
	font-family: Lato, sans-serif;
	font-size: 1rem;
	border-radius: 5px;
	padding: 0.5em 3em;
	border: none;
	box-shadow: 5px 5px 10px #3754aa10,-5px -5px 10px #6188dd14;
	color: #30240d;
	background-color: #5fee5bcd;
	transition: all 100ms ease-out;
}
#form button:hover{
	color: #121;
	background-color: #5fee5b ;
	box-shadow:	0px 3px 10px 2px #000a;
	cursor: pointer;
}
#form button:focus{
	outline: 1px dotted #3338;
}
.error{
	color: #ff6f5e;
	background-color: rgba(250,250,250,0.2);
	font-family: calibri;
	margin: 0 !important;
	padding: 0.5em 1.5rem;
	text-align: left;
	font-size: 1rem;
	font-weight: 800;
	transform: scale(1,1);
	transform-origin: center;
	transition: transform 250ms ease-in-out;
}
.error.success{
	color: #1ade1a;
	text-align: center;
}
.error span{
	font-size: 1.1em;
	font-weight: bold;
}
.error b.pass{
	font-size: 2rem;
	padding: 5px;
}
.btlog{
	font-family: calibri;
}
.msg-close{
	display: none;
	float: right;
}
.msg-close-label{
	justify-content: center;
	width: 16px;
	height: 2px;
	cursor: pointer;
}
.msg-close-label span{
	position: absolute;
    right: 0.45em;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 1px;
    transform: translateY(-50%);
}
.msg-close-label span::before,
.msg-close-label span::after{
	content: '';
	position: absolute;
	width: 18px;
	height: 3px;
    top: calc( 50% - 1.5px);
	border-radius: 4px;
	background-color: #ccc;
	transform:;
}
.msg-close-label span::before{
	transform: rotate(45deg);
}

.msg-close-label span::after{
	transform: rotate(135deg);
}
.msg-close:checked ~ .error{
	transform: scale(1,0);
	display: none;
}
@media screen and (max-width: 500px){
	#form{
		transform: scale(1,1);
	}
	#form h1{
		font-size: 1.5rem;
	}
	header{
		background: #121212; 
	}
}