@media (max-width: 767px) {
	.userInput{
		border-radius: var(--roundness);
	}
	button.sendbtn {
		border-radius: var(--roundness);
		margin-top: 12px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.userInput{
		border-radius: var(--roundness) 0 0 var(--roundness);
	}
	button.sendbtn {
		border-radius: 0 var(--roundness) var(--roundness) 0;
	}
}
@media (min-width: 992px) {
	.userInput{
		border-radius: var(--roundness) 0 0 var(--roundness);
	}
	button.sendbtn {
		border-radius: 0 var(--roundness) var(--roundness) 0;
	}
}