.page-login{
	background: #fff url(../../img/login/login-bg.jpg) fixed center;
	background-size: cover;
	position: relative;
}
.bg-circle-right{
	position: absolute;
	top:0;
	right:0;
	bottom:0;
	width: auto;
	height: 100%;
}
.videobox{
	position: relative;
}
.videobox video{
	width: 100%;
	height: auto;
	margin:auto;
	padding:0;
	border-radius: 20px;
	overflow: hidden;
}
.gallery{
	position: absolute;
	top:-25%;
	right:0;
	height: 150%;
	overflow: hidden;
	transform: rotate(15deg);
}
.gallery-wrapper{
	position: fixed;
	inset:0;
	overflow: hidden;
}
.gallery .list{
	animation: marquee 10s linear infinite alternate;
}
.gallery .list.reverse{
	animation: marquee 10s linear infinite alternate-reverse;
}
.gallery .list img{
	width: 240px;
	height: 300px;
	object-fit: cover;
	border-radius: 30px;
}
.login-footer{
	background: #fff5;
	padding:30px 0;
	backdrop-filter: blur(10px);
	border-radius: 30px;
}
@keyframes marquee{
	from{
		transform: translateY(0);
	}
	to{
		transform: translateY(-10%);
	}
}
@media (max-width:768px){
	.gallery-wrapper{
		opacity: 0.1;
	}
}