.powerland-auth,
.powerland-auth * {
	box-sizing: border-box;
}

.powerland-auth [hidden] {
	display: none !important;
}

.powerland-auth-enhanced > .wpqa_form.login-form,
.powerland-auth-enhanced > .wpqa_login_social,
.powerland-auth-enhanced .powerland-auth ~ .wpqa_form.login-form {
	display: none !important;
}

.powerland-auth {
	--pl-auth-primary: #08aef0;
	--pl-auth-primary-dark: #007da9;
	--pl-auth-ink: #102a3a;
	--pl-auth-muted: #607986;
	--pl-auth-border: #cfe1e8;
	--pl-auth-soft: #f2f8fa;
	width: min(100%,520px);
	margin: 18px auto;
	padding: clamp(22px,4vw,34px);
	direction: rtl;
	text-align: right;
	font-family: inherit;
	color: var(--pl-auth-ink);
	background: #fff;
	border: 1px solid var(--pl-auth-border);
	border-radius: 16px;
	box-shadow: 0 14px 38px rgba(31,75,94,.09);
}

.powerland-auth__header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 26px;
}

.powerland-auth__mark {
	display: inline-grid;
	place-items: center;
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	color: #fff;
	font-size: 20px;
	background: linear-gradient(145deg,var(--pl-auth-primary),#087ab5);
	border-radius: 13px;
	box-shadow: 0 8px 20px rgba(8,174,240,.23);
}

.powerland-auth__header h2,
.powerland-auth__step h3 {
	margin: 0;
	color: var(--pl-auth-ink);
	font-family: inherit;
	font-weight: 800;
}

.powerland-auth__header h2 {
	font-size: clamp(20px,3vw,25px);
	line-height: 1.5;
}

.powerland-auth__header p,
.powerland-auth__hint {
	margin: 3px 0 0;
	color: var(--pl-auth-muted);
	font-size: 13px;
	line-height: 1.8;
}

.powerland-auth__step {
	animation: powerland-auth-enter .18s ease-out;
}

@keyframes powerland-auth-enter {
	from { opacity: 0; transform: translateY(5px); }
	to { opacity: 1; transform: translateY(0); }
}

.powerland-auth__step > label:not(.powerland-auth__check),
.powerland-auth__step > div > label {
	display: block;
	margin: 0 0 8px;
	color: var(--pl-auth-ink);
	font-size: 13px;
	font-weight: 700;
}

.powerland-auth__field {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 0 16px;
}

.powerland-auth__field input {
	width: 100%;
	height: 50px !important;
	margin: 0 !important;
	padding: 10px 46px 10px 44px !important;
	color: var(--pl-auth-ink);
	font: 500 15px/1.5 inherit;
	background: #fff;
	border: 1px solid var(--pl-auth-border) !important;
	border-radius: 11px !important;
	box-shadow: none !important;
}

.powerland-auth__field input::placeholder {
	color: #8ba0aa;
	opacity: 1;
}

.powerland-auth__field > i {
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #6e8b98;
	pointer-events: none;
}

.powerland-auth__field > button {
	position: absolute;
	left: 6px;
	top: 6px;
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	color: #607986;
	background: transparent;
	border: 0;
	border-radius: 8px;
	cursor: pointer;
}

.powerland-auth__field input:focus {
	border-color: var(--pl-auth-primary) !important;
	outline: 3px solid rgba(8,174,240,.16) !important;
	outline-offset: 1px;
}

.powerland-auth__field--code input {
	padding: 10px 16px !important;
	direction: ltr;
	text-align: center;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: .38em;
	font-variant-numeric: tabular-nums;
}

.powerland-auth__primary,
.powerland-auth__secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	padding: 10px 18px !important;
	font: 800 14px/1.5 inherit !important;
	letter-spacing: 0 !important;
	border-radius: 11px !important;
	cursor: pointer;
	transition: transform .15s ease,box-shadow .15s ease,background-color .15s ease;
}

.powerland-auth__primary {
	color: #fff !important;
	background: var(--pl-auth-primary) !important;
	border: 1px solid var(--pl-auth-primary) !important;
	box-shadow: 0 8px 18px rgba(8,174,240,.18);
}

.powerland-auth__primary:hover {
	background: var(--pl-auth-primary-dark) !important;
	border-color: var(--pl-auth-primary-dark) !important;
	transform: translateY(-1px);
}

.powerland-auth__secondary {
	margin-top: 10px;
	color: #087da9;
	background: var(--pl-auth-soft);
	border: 1px solid var(--pl-auth-border);
}

.powerland-auth__secondary:hover {
	background: #e6f4f8;
}

.powerland-auth__primary:disabled,
.powerland-auth__secondary:disabled {
	opacity: .58;
	cursor: wait;
	transform: none;
}

.powerland-auth__back {
	display: flex;
	align-items: center;
	gap: 6px;
	width: max-content;
	max-width: 100%;
	min-height: 34px;
	margin: -5px 0 8px;
	padding: 4px 0;
	color: #087da9;
	font: 700 12px/1.5 inherit;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.powerland-auth__identity {
	display: flex;
	width: max-content;
	max-width: 100%;
	margin: 0 0 14px;
	padding: 7px 11px;
	direction: ltr;
	color: #345563;
	font-size: 13px;
	font-weight: 700;
	overflow-wrap: anywhere;
	background: var(--pl-auth-soft);
	border: 1px solid var(--pl-auth-border);
	border-radius: 8px;
}

.powerland-auth__step h3 {
	margin-bottom: 16px;
	font-size: 19px;
	line-height: 1.6;
}

.powerland-auth__check {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 12px 0 15px;
	color: #4d6975;
	font-size: 12px;
	line-height: 1.9;
	cursor: pointer;
}

.powerland-auth__check input {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	margin: 3px 0 0;
	accent-color: var(--pl-auth-primary);
}

.powerland-auth__check a,
.powerland-auth__forgot,
.powerland-auth__footer button {
	color: #087da9;
	font-weight: 700;
}

.powerland-auth__forgot {
	display: table;
	margin: 14px auto 0;
	font-size: 12px;
}

.powerland-auth__status {
	min-height: 0;
	margin: 14px 0 0;
	padding: 0;
	font-size: 12px;
	line-height: 1.8;
}

.powerland-auth__status:not(:empty) {
	padding: 9px 11px;
	background: var(--pl-auth-soft);
	border-radius: 8px;
}

.powerland-auth__status.is-error {
	color: #a32626;
	background: #fff0f0;
}

.powerland-auth__status.is-success {
	color: #16633c;
	background: #edf9f1;
}

.powerland-auth__footer {
	margin-top: 18px;
	padding-top: 15px;
	text-align: center;
	border-top: 1px solid #e3edf1;
}

.powerland-auth__footer button {
	padding: 3px 8px;
	font: 600 11px/1.6 inherit;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.panel-pop-content .powerland-auth,
.wpqa-login-template .powerland-auth {
	width: 100%;
	margin: 0 auto;
}

.panel-pop-content .powerland-auth {
	border: 0;
	box-shadow: none;
}

.dark-skin .powerland-auth {
	--pl-auth-ink: #edf7fa;
	--pl-auth-muted: #a8bec7;
	--pl-auth-border: #35525e;
	--pl-auth-soft: #17323d;
	background: #102630;
}

.dark-skin .powerland-auth__field input {
	color: #edf7fa;
	background: #122d38;
}

@media (max-width: 600px) {
	.powerland-auth {
		width: 100%;
		margin: 10px auto;
		padding: 20px 16px;
		border-radius: 13px;
		box-shadow: 0 8px 24px rgba(31,75,94,.08);
	}

	.powerland-auth__header {
		align-items: flex-start;
		margin-bottom: 22px;
	}

	.powerland-auth__mark {
		flex-basis: 42px;
		width: 42px;
		height: 42px;
		border-radius: 11px;
	}

	.powerland-auth__field--code input {
		font-size: 21px;
		letter-spacing: .25em;
	}
}

@media (max-width: 360px) {
	.powerland-auth {
		padding-inline: 13px;
	}

	.powerland-auth__header {
		gap: 10px;
	}

	.powerland-auth__header h2 {
		font-size: 19px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.powerland-auth__step {
		animation: none;
	}

	.powerland-auth__primary,
	.powerland-auth__secondary {
		transition: none;
	}
}
