.bsmp-btn {
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid transparent;
	border-radius: 14px;
	font-weight: 850;
	font-size: 13px;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.bsmp-btn[disabled] {
	cursor: not-allowed;
	opacity: 0.74;
}

.bsmp-btn:hover,
.bsmp-btn:focus {
	transform: translateY(-1px);
	text-decoration: none;
}

.bsmp-btn--primary {
	background: var(--bsmp-primary);
	color: #ffffff;
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.bsmp-btn--primary:hover,
.bsmp-btn--primary:focus {
	background: var(--bsmp-primary-dark);
	color: #ffffff;
}

.bsmp-btn--light {
	background: #ffffff;
	color: var(--bsmp-primary);
	border-color: #dbeafe;
}

.bsmp-btn--light:hover,
.bsmp-btn--light:focus {
	background: #eff6ff;
	color: var(--bsmp-primary-dark);
}

.bsmp-btn--ghost {
	background: transparent;
	color: var(--bsmp-muted);
	border-color: var(--bsmp-border);
}

.bsmp-btn--ghost:hover,
.bsmp-btn--ghost:focus {
	background: #f9fafb;
	color: var(--bsmp-text);
}

.bsmp-form {
	margin: 18px 0 0;
}

.bsmp-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.bsmp-field--wide {
	grid-column: 1 / -1;
}

.bsmp-field label {
	display: block;
	font-size: 13px;
	font-weight: 850;
	color: #374151;
	margin-bottom: 7px;
}

.bsmp-field label span {
	color: var(--bsmp-danger);
}

.bsmp-field input[type="text"],
.bsmp-field input[type="email"],
.bsmp-field input[type="number"],
.bsmp-field select,
.bsmp-field textarea {
	width: 100%;
	max-width: 100%;
	min-height: 46px;
	border: 1px solid var(--bsmp-border);
	border-radius: 14px;
	background: #ffffff;
	color: var(--bsmp-text);
	font-size: 14px;
	padding: 10px 12px;
	box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02);
}

.bsmp-field textarea {
	min-height: 106px;
	resize: vertical;
}

.bsmp-field input:focus,
.bsmp-field textarea:focus,
.bsmp-field select:focus {
	border-color: var(--bsmp-primary);
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
	outline: none;
}

.bsmp-form-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 22px;
	padding-top: 18px;
	border-top: 1px solid var(--bsmp-border);
}

.bsmp-logo-uploader {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.bsmp-logo-preview {
	width: 98px;
	height: 98px;
	border-radius: 22px;
	border: 1px dashed #bfdbfe;
	background: #eff6ff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	color: var(--bsmp-muted);
	font-size: 12px;
	text-align: center;
	padding: 8px;
}

.bsmp-logo-preview img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 782px) {
	.bsmp-form-grid {
		grid-template-columns: 1fr;
	}

	.bsmp-logo-uploader {
		align-items: stretch;
		flex-direction: column;
	}
}
