form.pumpt-auth {
	display: flex;
	z-index: 999;
	position: fixed;
	left: 0;
	top: 0;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	color: #878787;
	font-size: 11px;
	background: rgba(255, 255, 255, 1);
	width: 100%;
	height: 100%;
	max-width: 100%;
	margin: 0 auto;
	transition: display 5s ease-in;
	background: url('../img/auth-bg.png');
	background-size: cover;
	background-position: left bottom;
}

form.pumpt-auth.hide {
	display: none;
	transition: display 5s ease-out;
}

form.pumpt-auth .right {
	width: 100%;
	min-height: 100vh;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}

form.pumpt-auth .right .inner {
	width: 400px;
	max-width: 100%;
	background-color: #FFFFFF;
	padding: 32px;
	border-radius: 25px;
}

.pumpt-auth hr {
	background-color: rgba(0, 0, 0, 0.1);
	border: 0 none;
	height: 1px;
	margin: 20px 0;
}

.pumpt-auth input {
	width: 100%;
}

.pumpt-auth input:not(.woocommerce-form__input-checkbox) {
	height: 56px;
	width: 100%;
	max-width: 100%;
}

.pumpt-auth input.error {
	border: 1px solid #FF0000 !important;
}

.pumpt-auth a.close {
	color: #DCDCDC;
	position: absolute;
	right: 30px;
	top: 24px;
	text-decoration: none;
}

.pumpt-auth p.status {
	text-align: center;
	margin: 0 auto;
	font-weight: 600;
	display: none;
	font-size: 14px;
	color: #000000;
}

.pumpt-auth-overlay {
	height: 100%;
	width: 100%;
	background-color: #F6F6F6;
	opacity: 0.9;
	position: fixed;
	z-index: 998;
}

label[for='pumpt_register_consent'] {
	display: flex;
	align-items: center;
	cursor: pointer;
	flex-wrap: wrap;
}

label[for='pumpt_register_consent'] input {
	width: 16px !important;
	height: 16px !important;
	margin: 0 10px 0 0;
}

.pumpt-auth label.error {
	width: 100% !important;
	color: red;
	left: 0;
	margin-top: -10px;
}

label#pumpt_register_consent-error {
	order: 3;
	width: 100% !important;
	display: block !important;
	color: red;
	left: 0;
	margin-top: 0;
}

@media (max-width: 479px) {
	form.pumpt-auth {
		flex-direction: column;
	}

	.pumpt-auth hr {
		display: none;
	}
}