.lgnl-form {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.lgnl-form__field {
	/* margin: 1.25em 0; */
}

.lgnl-textinput {
	width: 100%;
	max-width: 35ch;
}

.lgnl-form__field input,
.lgnl-form__field textarea,
.lgnl-form__field select {
	margin: 0 1px;
}

.lgnl-fieldset {
	display: block;
}

.lgnl-field-group {
	display: flex;
	flex-direction: column;
	gap: 0.75em;
	/* margin-bottom: 1.5em; */
}

.lgnl-field-group + .lgnl-field-group {
	margin-top: 0.5em;
}

.lgnl-fieldset {
	display: flex;
	flex-direction: column;
	gap: 0.5em;
}

.lgnl-group-title {
	margin: 0em;
}

.lgnl-title {
	display: flex;
	margin-bottom: 0.25em;
	gap: 0.35em;
	align-items: center;
	width: fit-content;
}

.lgnl-title input[type=checkbox] {
	margin: 0;
}

.lgnl-radio-button {
	border: 1px solid #b0bbc2;
    border-radius: 0.25em;
    padding: 0.5em;
	gap: 0.5em;
	cursor: pointer;
	position: relative;
	align-items: center;
    display: flex;
}

.lgnl-radio-button--disabled {
	color: #bbb;
	border: 1px solid #c7cdd1;
}

.lgnl-radio-button--checked {
	border: 1px solid #135e96;
}

.lgnl-submit {
	display: flex;
	align-items: center;
}

.lgnl-soon {
	border-radius: 0.5em;
    background-color: #c0c0c0;
    color: white;
    font-weight: 500;
    padding: 0.1em 0.5em;
    position: absolute;
    bottom: 100%;
    left: 100%;
	font-size: 12px;
	transform: translate(-25%, 50%);
}

.lgnl-button {
	display: block;
}

.lgnl-button-large {
	padding: 7px 15px;
}