.chub-form {
	background: #FFFFFF;
	border-radius: 16px;
	padding: 28px;
	box-shadow: 0 10px 30px rgba(46, 34, 0, 0.12);
	max-width: 560px;
	font-family: 'Poppins', 'Hind Siliguri', sans-serif;
}
.chub-form__row { margin-bottom: 18px; }
.chub-form__row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.chub-form label { display: block; font-weight: 600; font-size: 14px; color: #2E2200; margin-bottom: 6px; }
.chub-form input, .chub-form select, .chub-form textarea {
	width: 100%;
	padding: 13px 16px;
	border-radius: 10px;
	border: 1.5px solid #E5DFC9;
	font-family: inherit;
	font-size: 15px;
	background: #FFFDF7;
	color: #2A2416;
}
.chub-form input:focus, .chub-form select:focus, .chub-form textarea:focus {
	outline: none;
	border-color: #DEAB1A;
}
.chub-btn-submit {
	width: 100%;
	padding: 16px;
	border-radius: 50px;
	border: none;
	background: #DEAB1A;
	color: #2E2200;
	font-weight: 700;
	font-size: 16px;
	cursor: pointer;
	transition: transform .2s, box-shadow .2s;
}
.chub-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(222,171,26,.4); }
.chub-form__status {
	margin-top: 16px;
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 500;
	display: none;
}
.chub-form__status.is-success { display: block; background: #E7F5E8; color: #2E7D32; }
.chub-form__status.is-error { display: block; background: #FBEAE8; color: #C0392B; }

@media (max-width: 480px) {
	.chub-form__row--split { grid-template-columns: 1fr; }
}
