.anabelis-ns {
	width: 100%;
	max-width: 420px;
	color: #ffffff;
	font-family: 'Satoshi', 'Santoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	text-align: left;
	box-sizing: border-box;
}

.anabelis-ns__title {
	margin: 0 0 12px;
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 500;
	line-height: 1.35;
	color: #ffffff;
	font-family: inherit;
}

.anabelis-ns__description {
	margin: 0 0 20px;
	font-size: clamp(14px, 1.1vw, 15px);
	font-weight: 400;
	line-height: 1.6;
	color: #cccccc;
	font-family: inherit;
}

.anabelis-ns__form {
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	gap: 12px;
	box-sizing: border-box;
}

.anabelis-ns__input {
	flex: 1 1 auto;
	min-width: 0;
	height: 48px;
	padding: 0 16px;
	border: 1px solid #444444;
	background-color: #111111;
	color: #ffffff;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	font-family: inherit;
	border-radius: 0;
	box-shadow: none;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}

.anabelis-ns__input::placeholder {
	color: rgba(255, 255, 255, 0.45);
	opacity: 1;
}

.anabelis-ns__input:focus {
	border-color: #666666;
	outline: none;
}

.anabelis-ns__button {
	flex: 0 0 auto;
	height: 48px;
	padding: 0 22px;
	border: 0;
	background-color: #c5a059;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	line-height: 1;
	font-family: inherit;
	border-radius: 0;
	cursor: pointer;
	white-space: nowrap;
	transition: background-color 0.2s ease, opacity 0.2s ease;
	box-sizing: border-box;
}

.anabelis-ns__button:hover,
.anabelis-ns__button:focus {
	background-color: #b8924f;
	color: #ffffff;
	outline: none;
}

.anabelis-ns__message {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.5;
	color: #c5a059;
	font-family: inherit;
}

.anabelis-ns__message[hidden] {
	display: none;
}

.anabelis-ns__form.is-submitted .anabelis-ns__input,
.anabelis-ns__form.is-submitted .anabelis-ns__button {
	opacity: 0.65;
	pointer-events: none;
}

@media (max-width: 767px) {
	.anabelis-ns {
		max-width: none;
	}

	.anabelis-ns__title {
		margin-bottom: 10px;
	}

	.anabelis-ns__description {
		margin-bottom: 16px;
	}

	.anabelis-ns__form {
		flex-direction: column;
		gap: 10px;
	}

	.anabelis-ns__input {
		width: 100%;
	}

	.anabelis-ns__button {
		width: 100%;
		min-height: 48px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.anabelis-ns__form {
		max-width: 100%;
	}

	.anabelis-ns__button {
		padding: 0 18px;
	}
}
