body{
	font-family: sans-serif;
	margin:0;
	line-height: 1.5;
}

*{
	box-sizing: border-box;
	margin:0;
}

.login-popup{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1099;
	background-color:rgba(0,0,0,0.6);
	visibility: hidden;
	opacity: 0;
	transition: all 1s ease;
}
.login-popup.show{
	visibility:visible;
	opacity: 1;
}
.login-popup .box{
	background: rgb(238, 234, 234);
	width: 550px;
	position: absolute;
	/*left: 50%;*/
	/*top:50%;*/
	/*transform:translate(-50%,-50%);*/
	flex-wrap: wrap;
	opacity: 0;
	margin-left: 50px;
	transition: all 1s ease;
	border-radius: 3px;
	padding: 30px;

}
.login-popup.show .box{
	opacity: 1;
	margin-left: 0;
}
.btndiv{
	display: flex;
	justify-content:flex-end;
	margin-top: 10px;
}
.btndiv button{
	background: #024e73;
    color: #fff;
    border: 0;
    padding: 8px 15px;
    font-size: 18px;
    cursor: pointer;
    margin: 2px;
}
.img{
	height: 70px;
	width: 70px;
	border-radius: 50%;
}
.text{
	display: flex;
}
.text p:last-child{
	margin-left: auto;
	margin-top: 0px;;
}
.text p{
	margin: 15px;
}
@keyframes zoomInOut{
	0%,100%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.1);
	}
}

/*responsive*/
@media(max-width: 767px){
	.login-popup .box{
		width: calc(100% - 30px);
	}
}
