.pbh-login-wrap {
	width: 100%;
}

.pbh-login-message {
	margin-bottom: 15px;
	padding: 12px 14px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1.4;
}

.pbh-login-message.is-error {
	background: #ffe3e3;
	color: #8a1f1f;
	border: 1px solid #f1b7b7;
}

.pbh-login-message.is-success {
	background: #e6f6ea;
	color: #216a39;
	border: 1px solid #b9dfc3;
}

.pbh-login-field {
	margin-bottom: 16px;
}

.pbh-login-field input[type="text"],
.pbh-login-field input[type="password"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	font-size: 16px;
	box-sizing: border-box;
}

.pbh-login-row {
	margin-bottom: 16px;
	text-align: left;
}

.pbh-login-options {
	margin-bottom: 16px;
}

.pbh-login-remember {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	cursor: pointer;
}

.pbh-login-actions {
	margin-bottom: 12px;
}

.pbh-login-button {
	width: 100%;
	padding: 14px 18px;
	border: 0;
	border-radius: 6px;
	background: #ff1d1d;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.pbh-login-button:hover {
	opacity: 0.92;
}

.pbh-login-button.is-loading {
	opacity: 0.7;
	cursor: wait;
}

.pbh-login-links {
	text-align: left;
	font-size: 16px;
	margin-top: 10px;
}

.pbh-login-success-message {
	padding: 12px 14px;
	background: #e6f6ea;
	border: 1px solid #b9dfc3;
	border-radius: 6px;
	color: #216a39;
}
.pbh-show-password {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	font-size: 15px;
	cursor: pointer;
}
.pbh-password-field {
	position: relative;
}

.pbh-password-field input {
	padding-right: 45px;
}

.pbh-toggle-password {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: none;
	cursor: pointer;
	padding: 4px;
}
.pbh-2fa-field input {

	letter-spacing: 6px;
	text-align: center;
	font-size: 20px;

}
.pbh-login-button.is-loading {
	opacity: 0.6;
	cursor: wait;
}

/* eye icon */

.pbh-password-field {
	position: relative;
}

.pbh-password-field input {
	padding-right: 45px;
}

.pbh-toggle-password {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	background: none;
	cursor: pointer;
	padding: 4px;
}

.pbh-eye-icon {
	width: 20px;
	height: 20px;
	stroke: #777;
	fill: none;
	stroke-width: 2;
	margin-top: 10px;
}

.pbh-eye-icon circle {
	fill: #777;
}

/* crossed eye when password visible */

.pbh-toggle-password.is-visible .pbh-eye-icon {
	opacity: 0.5;
}