/**
 * Shared layout tokens — colors/typography intentionally minimal (TBD by design).
 */

.tm-btn {
	display: inline-block;
	padding: 0.65rem 1.1rem;
	border: 1px solid currentColor;
	background: transparent;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
	font: inherit;
}

.tm-btn--primary {
	background: #111;
	border-color: #111;
	color: #fff;
}

.tm-form {
	display: grid;
	gap: 0.75rem;
}

.tm-form__label {
	font-size: 0.875rem;
}

.tm-form__input {
	width: 100%;
	padding: 0.65rem 0.75rem;
	border: 1px solid #ccc;
	font: inherit;
	box-sizing: border-box;
}

.tm-form__check {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	font-size: 0.875rem;
}

.tm-alert {
	padding: 0.75rem 1rem;
	margin-bottom: 1rem;
	border: 1px solid #ccc;
}

.tm-alert--error {
	border-color: #b33;
}

.tm-alert--success {
	border-color: #2a7;
}

.tm-muted {
	opacity: 0.7;
}
