.blpaczka__settings__item_container {

	font-family: Open Sans,sans-serif;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-bottom: 1rem;

	&[data-blpaczka-form-item-type="checkbox"] {
		flex-direction: row-reverse;
		align-items: center;
		justify-content: flex-end;
	}

	&[data-blpaczka-form-item-type="button"] {
		display: inline-flex;
		margin-bottom: 0;
	}

	label {
		font-weight: 600;
		font-size: 1.1em;
		color: #262b44;
	}

	input, select, textarea {
		font-weight: 300;
		padding: 6px 12px;
		border-color: #ddd !important;

		&:focus {
			box-shadow: none !important;
			border-color: #ddd !important;
			outline: none !important;
		}
	}

	select {
		padding: 8px 12px;
		max-width: 100%;
		width: 100%;
	}

	button[type="submit"] {
		margin-top: 16px;
		background: linear-gradient(90deg,#5384ec,#66b5c4);
		border-radius: 100px;
		color: #fff;
		font-size: 16px;
		font-weight: 700;
		line-height: 22px;
		max-height: 54px;
		padding: 16px 24px;
		text-decoration: none;
		transition-duration: .2s;
		transition-property: all;
		transition-timing-function: ease;
		border: none;
		cursor: pointer;

		&:hover {
			box-shadow: 0 8px 24px #568ae8b2;
		}
	}

	.error-label {
		color: red;
		font-weight: 500;
	}

}