.bsp-widget {
	max-width: 420px;
	margin: 2em auto;
	padding: 2em;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
	font-family: inherit;
}

.bsp-widget form {
	display: flex;
	flex-direction: column;
	gap: 0.6em;
}

.bsp-widget label {
	font-weight: 600;
	font-size: 0.9em;
}

.bsp-widget input[type='text'],
.bsp-widget input[type='password'] {
	padding: 0.6em 0.75em;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1em;
}

.bsp-widget button[type='submit'] {
	margin-top: 0.4em;
	padding: 0.7em 1em;
	background: #1d2327;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 1em;
	cursor: pointer;
	transition: background 0.15s ease-in-out;
}

.bsp-widget button[type='submit']:hover:not(:disabled) {
	background: #32373c;
}

.bsp-widget button[type='submit']:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.bsp-widget .bsp-error {
	margin: 0.4em 0 0;
	padding: 0.6em 0.8em;
	background: #fbeaea;
	color: #a93b3b;
	border-radius: 4px;
	font-size: 0.9em;
}

.bsp-dashboard {
	background: none;
	border: none;
	box-shadow: none;
	padding: 2em 0;
}

.bsp-dashboard h2 {
	margin: 0;
	color: #fff;
}
