/* Private Buchhaltung Pro - "App-Shell"
   Diese Datei sorgt dafür, dass die Buchhaltungs-Seite NICHT wie eine
   normale WordPress-Seite aussieht (kein Theme, kein Header/Footer,
   keine Admin-Leiste), sondern wie eine eigene kleine App. */

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
}

body.pbap-body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	background: #f2f3f5;
	color: #222;
	min-height: 100vh;
}

.pbap-shell {
	max-width: 960px;
	margin: 0 auto;
	padding: 12px 14px 40px;
	min-height: 100vh;
	background: #fff;
}

/* ---- Login- / Hinweis-Seite -------------------------------------------- */

.pbap-shell-center {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	max-width: 100%;
	padding: 20px;
	background: linear-gradient(135deg, #2271b1, #1a4f7a);
}

.pbap-login-card {
	background: #fff;
	border-radius: 10px;
	padding: 28px 24px;
	width: 100%;
	max-width: 360px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	text-align: center;
}

.pbap-login-title {
	margin: 0 0 18px;
	font-size: 20px;
	color: #2271b1;
}

.pbap-login-error {
	background: #fdecea;
	border: 1px solid #f5c6cb;
	color: #c0392b;
	padding: 8px 12px;
	border-radius: 4px;
	margin-bottom: 14px;
	font-size: 14px;
}

.pbap-login-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-align: left;
}

.pbap-login-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-weight: 600;
	font-size: 13px;
	color: #444;
}

.pbap-login-form input {
	padding: 10px 12px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-weight: normal;
}

.pbap-btn-block {
	width: 100%;
	text-align: center;
	padding: 12px;
	font-size: 16px;
}
