/* ── Page-level resets ─────────────────────────────────────────────────────── */
.dbolt-login-page .entry-title,
.dbolt-login-page .ast-breadcrumbs-wrapper { display: none !important; }

/* ── Banner (full-width bleed) ─────────────────────────────────────────────── */
.dbolt-login-banner {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* ── Page wrapper ──────────────────────────────────────────────────────────── */
.dbolt-login-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding: 60px 16px 80px;
}

@media (max-width: 921px) {
	.dbolt-login-wrap { padding: 40px 16px 60px; }
}

/* ── Login box ─────────────────────────────────────────────────────────────── */
.dbolt-login-box {
	background: #1e2d47;
	border-radius: 16px;
	box-shadow: 0 8px 40px rgba(0,0,0,.4);
	padding: 40px 40px 48px;
	width: 100%;
	max-width: 420px;
	direction: rtl;
}

/* ── Logo ──────────────────────────────────────────────────────────────────── */
.dbolt-login-logo {
	text-align: center;
	margin-bottom: 24px;
}

.dbolt-login-logo img {
	max-height: 80px !important;
	max-width: 220px !important;
	width: auto !important;
	height: auto !important;
	object-fit: contain;
}

.dbolt-login-site-name {
	font-size: 1.4rem;
	font-weight: 800;
	color: #ffffff;
}

/* ── Title ─────────────────────────────────────────────────────────────────── */
.dbolt-login-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #e2e8f0;
	text-align: center;
	margin: 0 0 28px;
}

/* ── Alert ─────────────────────────────────────────────────────────────────── */
.dbolt-login-alert {
	background: rgba(220,38,38,.15);
	border: 1px solid rgba(220,38,38,.4);
	color: #fca5a5;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: .9rem;
	margin-bottom: 20px;
	text-align: center;
}

.dbolt-login-alert[hidden] { display: none; }

/* ── Fields ────────────────────────────────────────────────────────────────── */
.dbolt-login-field {
	margin-bottom: 20px;
}

.dbolt-login-field label {
	display: block;
	font-size: .875rem;
	font-weight: 600;
	color: #94a3b8;
	margin-bottom: 6px;
}

.dbolt-login-field input {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid #334155 !important;
	border-radius: 8px;
	font-size: .95rem;
	color: #e2e8f0 !important;
	background: #0d1526 !important;
	outline: none;
	transition: border-color .2s;
	box-sizing: border-box;
}

.dbolt-login-field input:focus {
	border-color: #3b82f6;
	background: #0f172a;
}

.dbolt-login-field input:-webkit-autofill,
.dbolt-login-field input:-webkit-autofill:hover,
.dbolt-login-field input:-webkit-autofill:focus {
	-webkit-text-fill-color: #e2e8f0;
	-webkit-box-shadow: 0 0 0 1000px #0d1526 inset;
	box-shadow: 0 0 0 1000px #0d1526 inset;
	caret-color: #e2e8f0;
}

.dbolt-login-field input::placeholder { color: #475569; }

/* ── Password toggle ───────────────────────────────────────────────────────── */
.dbolt-login-pass-wrap {
	position: relative;
}

.dbolt-login-pass-wrap input {
	padding-left: 44px;
}

.dbolt-login-toggle-pass {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	cursor: pointer;
	color: #475569;
	padding: 0;
	display: flex;
	align-items: center;
}

.dbolt-login-toggle-pass:hover { color: #94a3b8; }

/* ── Submit button ─────────────────────────────────────────────────────────── */
.dbolt-login-btn {
	width: 100%;
	padding: 13px;
	background: #2563eb;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	margin-top: 8px;
	transition: background .2s, opacity .2s;
}

.dbolt-login-btn:hover { background: #1d4ed8; }
.dbolt-login-btn:disabled { opacity: .6; cursor: default; }

@media (max-width: 480px) {
	.dbolt-login-box { padding: 28px 20px 36px; }
}
