.transpoship-form-wrap {
	max-width: 480px;
	margin: 0 auto;
}

.transpoship-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.transpoship-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.transpoship-field label {
	font-size: 14px;
	font-weight: 600;
	color: #1e1e1e;
}

.transpoship-field label span[aria-hidden] {
	color: #c0392b;
	margin-left: 2px;
}

.transpoship-field input[type="text"],
.transpoship-field input[type="email"],
.transpoship-field input[type="tel"] {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid #c5c5c5;
	border-radius: 4px;
	font-size: 15px;
	line-height: 1.5;
	color: #1e1e1e;
	background: #fff;
	box-sizing: border-box;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.transpoship-field input:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.18);
}

.transpoship-submit {
	margin-top: 4px;
}

.transpoship-btn {
	display: inline-block;
	padding: 11px 28px;
	background: #2271b1;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s ease, opacity 0.15s ease;
}

.transpoship-btn:hover:not(:disabled) {
	background: #135e96;
}

.transpoship-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.transpoship-message {
	padding: 12px 16px;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
}

.transpoship-message.success {
	background: #d1fae5;
	color: #065f46;
	border: 1px solid #6ee7b7;
}

.transpoship-message.error {
	background: #fee2e2;
	color: #991b1b;
	border: 1px solid #fca5a5;
}
