.whmcs-dst,
.whmcs-dst * {
	box-sizing: border-box;
}

.whmcs-dst {
	--whmcs-dst-accent: #19cda0;
	--whmcs-dst-accent-dark: #10ad85;
	--whmcs-dst-text: #243442;
	--whmcs-dst-muted: #77818a;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	font-family: inherit;
}

.whmcs-dst__form {
	position: relative;
	display: flex;
	min-height: 64px;
	padding: 5px;
	background: #fff;
	border: 1px solid rgba(28, 45, 58, 0.1);
	border-radius: 13px;
	box-shadow: 0 12px 35px rgba(15, 64, 55, 0.13);
}

.whmcs-dst__input-wrap {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
}

.whmcs-dst__input {
	width: 100%;
	min-width: 0;
	height: 52px;
	margin: 0;
	padding: 0 18px;
	color: var(--whmcs-dst-text);
	background: transparent;
	border: 0;
	border-radius: 9px;
	box-shadow: none;
	font: inherit;
	font-size: 17px;
	line-height: 1.4;
	outline: none;
}

.whmcs-dst__input::placeholder {
	color: var(--whmcs-dst-muted);
	opacity: 1;
}

.whmcs-dst__input:focus {
	box-shadow: inset 0 0 0 2px rgba(25, 205, 160, 0.25);
}

.whmcs-dst__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 5px;
}

.whmcs-dst__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 126px;
	height: 52px;
	margin: 0;
	padding: 0 20px;
	border: 0;
	border-radius: 9px;
	font: inherit;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.whmcs-dst__button svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.whmcs-dst__button--search {
	color: #fff;
	background: var(--whmcs-dst-accent);
}

.whmcs-dst__button--transfer {
	color: #fff;
	background: #263d4b;
}

.whmcs-dst__button:hover,
.whmcs-dst__button:focus-visible {
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 7px 17px rgba(20, 62, 53, 0.2);
}

.whmcs-dst__button--search:hover,
.whmcs-dst__button--search:focus-visible {
	background: var(--whmcs-dst-accent-dark);
}

.whmcs-dst__button--transfer:hover,
.whmcs-dst__button--transfer:focus-visible {
	background: #172b37;
}

.whmcs-dst__button:focus-visible {
	outline: 3px solid rgba(25, 205, 160, 0.32);
	outline-offset: 2px;
}

.whmcs-dst__button:active {
	transform: translateY(0);
}

.whmcs-dst__message {
	position: absolute;
	top: calc(100% + 7px);
	left: 12px;
	margin: 0;
	color: #b42318;
	font-size: 13px;
	line-height: 1.35;
}

@media (max-width: 680px) {
	.whmcs-dst__form {
		flex-wrap: wrap;
		padding: 6px;
	}

	.whmcs-dst__input-wrap {
		flex-basis: 100%;
	}

	.whmcs-dst__input {
		height: 50px;
		padding: 0 14px;
		font-size: 16px;
	}

	.whmcs-dst__actions {
		width: 100%;
		margin-top: 5px;
	}

	.whmcs-dst__button {
		flex: 1 1 50%;
		min-width: 0;
		height: 48px;
		padding: 0 12px;
	}
}

@media (max-width: 360px) {
	.whmcs-dst__button {
		font-size: 14px;
	}

	.whmcs-dst__button svg {
		width: 18px;
		height: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.whmcs-dst__button {
		transition: none;
	}
}

