/*==================================================
  login-popup
==================================================*/
.page-overlay {
	display: none;
	opacity: 0;
	transition: 0.3s all linear;
	z-index: 99999;
}
.page-overlay.b-popup {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: fixed;
	opacity: 1;
	background-color: rgba(64, 0, 150, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}
.b-popup .b-popup-content {
	width: 100%;
	max-width: 557px;
	height: 100%;
	max-height: 527px;
	padding: 10px;
	background-color: #400099;
	box-shadow: 0 0 10px #000000;
}
body.fixed {
	overflow-y: hidden;
}
#user_login,
#user_pass,
#wp-submit {
	height: 70px;
	width: 270px;
	border-radius: 50px;
	margin-top: 30px;
	font-size: 16px;
	text-align: center;
	border-color: white;
	border-style: solid;
}
#user_login,
#user_pass {
	color: white !important;
	background-color: #400099;
}
#user_login::placeholder,
#user_pass::placeholder {
	color: white !important;
	background-color: #400099;
}
#loginform {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 65%;
}
#wp-submit {
	color: #400099;
	background-color: white;
}
.login-form-wrap h2 {
	color: white;
	text-align: center;
	max-width: 300px;
	margin: 50px auto 0;
}
#wp-submit:hover {
	background-color: #400099;
	color: white;
}
.header-top__item a[href="#login"] > button:hover {
	color: black;
	background: white;
	cursor: pointer;
}
.header-top__item a:last-child button {
	color: black;
	background: white;
	cursor: pointer;
}
.header-top__item a:last-child:hover button {
	/*color: white;*/
	/*background: #310075;*/
	text-decoration-line: underline;
	cursor: pointer;
}
/*====================//====================*/
@media all and (max-width: 640px) {
	.b-popup .b-popup-content {
		max-width: 300px;
		max-height: 400px;
	}
	.login-form-wrap h2 {
		margin: 25px auto;
	}
}
