@font-face {
  font-family: TurretRoad;
  src: url(TurretRoad-ExtraLight.ttf);
}

body{
	font-family: TurretRoad, cursive;
	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.9);
	visibility: hidden;
	opacity: 0;
	transition: all 1s ease;
}
.login-popup.show{
	visibility:visible;
	opacity: 0.9;
}
.login-popup .box{
	background:#fffb00; /*yellow*/
	width: 750px;
	height:610px;
	position: absolute;
	left: 50%;
	top:50%;
	transform:translate(-50%,-50%);
	display: flex;
	flex-wrap: wrap;
	opacity: 0;
	margin-left: 50px;

	transition: all 1s ease;

}
.login-popup.show .box{
	opacity: 1;
	margin-left: 0;
}
.login-popup .box .img-area{
	flex:0 0 50%;
	max-width: 50%;
	position: relative;
	overflow: hidden;
	padding:30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-popup .box .img-area h1{
	color: #000;
	font-size: 1rem;
	margin: 0 0 20px;
	font-weight: bold;
}


.login-popup .box .img-area .img{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	animation: zoomInOut 7s linear infinite;
	z-index: -1;

}
@keyframes zoomInOut{
	0%,100%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.1);
	}
}
.login-popup .box .form{
	flex:0 0 50%;
	max-width: 50%;
	padding:40px 30px;
	font-weight: bolder;
}

.login-popup .box .form p{
	color:#000;
	font-size: 1rem;
	margin:0 0 20px;
}

.login-popup .box .form h1{
color: #000;
	font-size: 1rem;
	margin: 0 0 20px;
	font-weight: bold;
}


.login-popup .box .form .form-control{
	height: 45px;
	margin-bottom: 30px;
	width: 100%;
	border:none;
	border-bottom:1px solid #cccccc;
	font-size: 15px;
	background:#fffb00; /*yellow*/
}
.login-popup .box .form .form-control:focus{
	outline: none;
}
.login-popup .box .form label{
	font-size: 15px;
	background:#fffb00; /*yellow*/
}


.login-popup .box .form .a{
background-color:rgba(255,255,0,0.8); /*yellow*/
color:#000;

    height:110px;
	width:268px;
    padding-top: 16px;
    width:268px;
    margin-left:16px;
}



.login-popup .box .form .title{
	text-align: center;
	width: 100%;
	color:#000;
	font-weight: normal;

	margin-top:50px;
	margin-left:20px;
	height: 32px;
	padding: 2px 5px;
	background-color:rgba(0,0,0,0.7);
	border: 2px solid #00E4CA;
	font-size: 1.1rem;

	text-decoration: none;
	color:#fff;
	cursor: pointer;



}
.login-popup .box .form .btn:focus{
	outline: none;
}

.login-popup .box .form .close{
	position: absolute;
	color:#FFF;
	text-align: center;
	margin-top:10px;
	margin-left:45px;
	height: 32px;
	padding: 2px 5px;
	background-color:rgba(0,0,0,0.7);
	border: 2px solid #00E4CA;
    font-weight: normal;
	font-size: 1.1rem;
	text-decoration: none;
	cursor: pointer;

}

/*responsive*/
@media(max-width: 767px){
	.login-popup .box{
		width: calc(100% - 30px);
	}
	.login-popup .box .img-area{
		display: none;
	}
	.login-popup .box .form{
		flex: 0 0 100%;
        max-width: 100%;
	}
}
