.hds-external-link-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hds-external-link-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hds-external-link-field label {
	font-weight: 600;
}

.hds-external-link-input {
	width: 100%;
	border: 1px solid #d7dce2;
	border-radius: 8px;
	padding: 12px 14px;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.hds-external-link-input:focus {
	border-color: #1f7aec;
	box-shadow: 0 0 0 3px rgba(31, 122, 236, .14);
	outline: none;
}

.hds-external-link-button {
	align-self: flex-start;
	border: 0;
	border-radius: 8px;
	background: #1f7aec;
	color: #fff;
	cursor: pointer;
	font-weight: 700;
	padding: 13px 22px;
	transition: background-color .2s ease, color .2s ease, opacity .2s ease;
}

.hds-external-link-button:hover {
	background: #155fc0;
}

.hds-external-link-button:disabled {
	cursor: wait;
	opacity: .65;
}

.hds-external-link-message {
	font-size: 14px;
	line-height: 1.4;
}

.hds-external-link-message.is-success {
	color: #137333;
}

.hds-external-link-message.is-error,
.hds-external-link-notice {
	color: #b3261e;
}
