.tsi-listserv {
	max-width: 640px;
	margin: 0 auto 60px;
	padding: 0 16px;
}

.tsi-listserv .tsi-listserv__title {
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 32px;
	margin-bottom: 16px;
	color: #fff;
}

.tsi-listserv .tsi-listserv__desc {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 40px;
}

.tsi-listserv .tsi-listserv__form {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.tsi-listserv .tsi-listserv__field {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.tsi-listserv .tsi-listserv__field label {
	font-family: "Source Code Pro", monospace;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #ffd700;
}

.tsi-listserv .tsi-listserv__field label span {
	color: #c00;
}

.tsi-listserv .tsi-listserv__field input[type="text"],
.tsi-listserv .tsi-listserv__field input[type="email"] {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 32px;
	color: #000;
	height: 80px;
	padding: 16px 32px;
	background-color: #ececec;
	border: none;
	border-radius: 4px 32px 32px 32px;
	outline: none;
	box-sizing: border-box;
	width: 100%;
	max-width: none;
	transition: all 0.2s ease-in-out;
	box-shadow: none;
}

.tsi-listserv .tsi-listserv__field input::placeholder {
	color: #999;
}

.tsi-listserv .tsi-listserv__field input[type="text"]:focus,
.tsi-listserv .tsi-listserv__field input[type="email"]:focus {
	background-color: #fff;
	box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.4);
	border: none;
	outline: none;
}

.tsi-listserv .tsi-listserv__submit {
	width: 100%;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 20px;
	padding: 18px 36px;
	margin-top: 16px;
	background: #ffd700;
	color: #000;
	border: none;
	border-radius: 78px;
	cursor: pointer;
	transition: background 0.2s ease, opacity 0.2s ease;
}

.tsi-listserv .tsi-listserv__submit:hover {
	background: #ffdf33;
	color: #000;
}

.tsi-listserv .tsi-listserv__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.tsi-listserv .tsi-listserv__message {
	padding: 14px 18px;
	border-radius: 8px;
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	line-height: 1.5;
}

.tsi-listserv .tsi-listserv__message--error {
	background: rgba(220, 38, 38, 0.15);
	border: 1px solid rgba(220, 38, 38, 0.4);
	color: #fca5a5;
}

.tsi-listserv .tsi-listserv__message--success {
	background: rgba(34, 197, 94, 0.15);
	border: 1px solid rgba(34, 197, 94, 0.4);
	color: #86efac;
}

@media screen and (max-width: 600px) {
	.tsi-listserv .tsi-listserv__title {
		font-size: 24px;
	}

	.tsi-listserv .tsi-listserv__field input[type="text"],
	.tsi-listserv .tsi-listserv__field input[type="email"] {
		font-size: 20px;
		height: 64px;
		padding: 12px 24px;
	}

	.tsi-listserv .tsi-listserv__submit {
		font-size: 16px;
		padding: 14px 28px;
	}
}
