#sc-send-sms {
	margin-top: 50px !important;
	max-width: 400px;
	margin: 0 auto;
	flex-direction: column;
	@media (max-width: 480px) {
		flex-direction: column;
		justify-content: center;
		display: flex;
		align-items: center;
	}
	form {
		display: flex;
		align-items: flex-end;
		gap: 30px;
		@media (max-width: 480px) {
			flex-direction: column;
			gap: 10px;
			align-items: center;
		}
		label {
			margin-bottom: 4px;
		}
	}
	#sc-send-sms-status {
		margin-top: 10px;
		color: green;
		font-weight: 500;
		&.error {
			color: red;
		}
	}
}